-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.71 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.71 KB
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
<!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">
<link rel="stylesheet" href="./Resources/CSS/index.css" type="text/css">
<title>Gritt-ify</title>
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<ul>
<li><a href="">Gritt-ify</a></li>
<li><a href="">Gritty Landing Banner</a></li>
<li><a href="">Gritter</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 is better with Gritty's face on it.</p>
<button class="submit">Subscribe or I will 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... cause he is a psycho.</p>
<form action="">
<input type="text">
<input class="submit" 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>