-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJeff's_Blog.html
35 lines (35 loc) · 1.48 KB
/
Jeff's_Blog.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
<!DOCTYPE html>
<head>
<link href="/normalize.css" rel="stylesheet">
<link href="Jeff's_Blog.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>Jeff's Blog</h1>
<ul>
<li>About Me</li>
<li>Best Poems</li>
<li>Worst Poems</li>
</ul>
</header>
<article>
<h2>VHS umami pop-up trust fund</h2>
<p>Marfa church-key kitsch bicycle rights, 8-bit mixtape cardigan gentrify Echo Park. Street art swag brunch, next level roof party Schlitz hella organic keffiyeh selfies. You probably haven't heard of them polaroid hashtag +1, meggings biodiesel Portland High Life cray tumblr retro.</p>
<button>Like</button>
</article>
<article>
<h2>Sartorial synth Echo Park, roof party</h2>
<p>chambray you probably haven't heard of them pour-over viral selvage umami skateboard VHS post-ironic selfies. Wes Anderson gentrify fanny pack twee, bicycle rights bitters blog keffiyeh plaid flannel. Tonx irony cliche sustainable mlkshk bitters. Four loko leggings chambray Vice.</p>
<button>Like</button>
</article>
<article>
<h2>Forage food truck keytar master cleanse</h2>
<p>ethical thundercats sustainable locavore quinoa Neutra. Aesthetic Cosby sweater single-origin coffee, bicycle rights organic lo-fi street art american apparel ennui four loko ethnic Brooklyn small batch. Forage YOLO polaroid</p>
<button>Like</button>
</article>
<script>
$("button").on("click", function() {
alert("Clicked!");
});
</script>
</body>