-
Notifications
You must be signed in to change notification settings - Fork 0
/
week1.html
85 lines (77 loc) · 3.08 KB
/
week1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Web Development for Everyone</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="white" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="index.html" class="brand-logo">Web Design</a>
<ul class="right hide-on-med-and-down">
<li><a href="week1.html">1. HTML</a></li>
<li><a href="week2.html">2. CSS</a></li>
<li><a href="week3.html">3. Typography</a></li>
<li><a href="week4.html">4. JavaScript</a></li>
<li><a href="week5.html">5. Frameworks</a></li>
<li><a href="week6.html">6. Github</a></li>
<li><a href="week7.html">7. Hosting</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="week1.html">1. HTML</a></li>
<li><a href="week2.html">2. CSS</a></li>
<li><a href="week3.html">3. Typography</a></li>
<li><a href="week4.html">4. JavaScript</a></li>
<li><a href="week5.html">5. Frameworks</a></li>
<li><a href="week6.html">6. Github</a></li>
<li><a href="week7.html">7. Hosting</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="container">
<div class="section">
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">code</i> 1. HTML</h2>
</div>
</div>
</div>
<div class="row">
<p>
Lesson 1: <a href="https://codepen.io/domhnall/pen/ZrzYVo?editors=1000#0" target="_blank"> Hello World </a>
</p>
<p>
Tip: You can change the Editor layout by clicking on the <code>Settings</code> button: <br/>
<img src="img/layout.png" alt="">
</p>
</div>
<div class="row">
<h3>YouTube Tutorial</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/cOA_4vRaZG4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<div class="row">
<h3>Coding Challenge</h3>
<p>
For your pair programming assignment this week you should create a website for the Zoo. You site should include the following:
</p>
<ul>
<li>Heading for the different sections</li>
<li>A list</li>
<li>Some images</li>
</ul>
</div>
</div> <!-- /section -->
</div> <!-- /container -->
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>