-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathlesson-1.html
53 lines (38 loc) · 1.77 KB
/
lesson-1.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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Learn jQuery in 15 min</title>
<link rel="stylesheet" href="style.css" media="screen" charset="utf-8">
</head>
<body>
<header>
<h1>Learn jQuery in 15 min</h1>
</header>
<section>
<article id="lesson-1">
<h2>Lesson One <span>Minutes 1 – 5</span></h2>
<h2>Lesson One</h2>
<p class="lead">Before they sold out heirloom kitsch green juice cred, poutine kinfolk chillwave actually cronut thundercats paleo ennui. Microdosing kitsch humblebrag, thundercats mumblecore williamsburg heirloom. </p>
<p name="shorty">Jean shorts hella food truck, mustache tousled drinking vinegar affogato organic master cleanse farm-to-table flannel pabst retro. Etsy neutra kogi kale chips VHS.</p>
<p>Marfa hella brunch, banjo lomo vice tousled post-ironic meggings portland mustache banh mi pinterest. Crucifix whatever YOLO four loko, man bun vegan art party mlkshk skateboard truffaut brooklyn.</p>
<p class="blue">Humblebrag street art forage thundercats williamsburg. Keffiyeh umami locavore paleo. Williamsburg sustainable raw denim, ethical squid vice twee trust fund taxidermy artisan.</p>
<ul>
<li><a href="http://google.com">Google</a></li>
<li><a href="http://facebook.com">Facebook</a></li>
<li><a href="http://youtube.co.uk">YouTube</a></li>
<li><a href="http://amazon.com">Amazon</a></li>
</ul>
<div class="boxes">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
<div class="box">4</div>
<div class="box"></div>
</div>
</article>
</section>
<script type="text/javascript" src="jquery-2.2.2.min.js"></script>
<script type="text/javascript" src="learn-jquery.js"></script>
</body>
</html>