-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
index.html
76 lines (74 loc) · 2.18 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="./style.css">
<title>Simple Liker</title>
</head>
<body>
<div id="modal">
<h2>Error!</h2>
<p id="modal-message"></p>
</div>
<header>
<h1>Simple Liker</h1>
</header>
<article class="media-post" id="201811189">
<header>
<h2> <span>Byron Flatiron</span> says:</h2>
</header>
<p>Practice your JavaScript!</p>
<footer>
<ul>
<li class="like">Like! <span class="like-glyph">♡</span></li>
</ul>
</footer>
</article>
<article class="media-post" id="201811190">
<header>
<h2> <span>Rashaun Flatiron</span> says:</h2>
</header>
<p>Practice your Ruby!</p>
<footer>
<ul>
<li class="like">Like! <span class="like-glyph">♡</span></li>
</ul>
</footer>
</article>
<article class="media-post" id="201811191">
<header>
<h2> <span>Matt Flatiron</span> says:</h2>
</header>
<p>Practice your Python!</p>
<footer>
<ul>
<li class="like">Like! <span class="like-glyph">♡</span></li>
</ul>
</footer>
</article>
<article class="media-post" id="201811192">
<header>
<h2> <span>Yunchu Flatiron</span> says:</h2>
</header>
<p>Practice your Java!</p>
<footer>
<ul>
<li class="like">Like! <span class="like-glyph">♡</span></li>
</ul>
</footer>
</article>
<article class="media-post" id="201811193">
<header>
<h2> <span>Hussein Flatiron</span> says:</h2>
</header>
<p>Practice your Elixr!</p>
<footer>
<ul>
<li class="like">Like! <span class="like-glyph">♡</span></li>
</ul>
</footer>
</article>
</body>
<script src="main.js" charset="utf-8"></script>
</html>