-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grittify</title>
<link rel="stylesheet" href="./resources/css/index.css">
</head>
<body>
<!--Navbar section-->
<nav class="navbar">
<ul>
<li><a class="blue" href="">Grittify</a></li>
<li><a href="">Gritty Landing Banner</a></li>
<li><a href="">Gritter Feed</a></li>
</ul>
</nav>
<!--Banner section-->
<div class="banner">
<h1>Gritty's landing banner</h1>
<img id="small-gritty" src="./resources/images/better_than_drake.png" alt="">
<p>Cause everything's better with Gritty's face on it.</p>
<button>Subscribe to me or I'll eat you</button>
</div>
<!--Gritter section-->
<div class="gritter-section">
<span class="bold" id="gritter">Gritter</span>
<p class="bold">Social media dedicated to Gritty...and only Gritty...because he's a psycho.</p>
<form action="">
<input type="text"/>
<input type="submit" value="Submit">
</form>
<div id="greets">
<ul>
<li>
<div class="avatar"></div><span>Hey there, it's Gritty again.</span>
</li>
<li>
<div class="avatar"></div><span>I haven't eaten any other mascots since yesterday.</span>
</li>
<li>
<div class="avatar"></div><span>Burp.</span>
</li>
</ul>
</div>
</div>
</body>
</html>