-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (80 loc) · 2.69 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
77
78
79
80
81
82
83
84
<!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>Odin's Title</title>
<link rel="stylesheet" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
</head>
<body>
<div>
<div class="hero">
<div class="header">
<strong>Header Logo</strong>
</div>
<div>
<ul><li><a href="#">⭐ - link one</a></li>
<li><a href="#">🦸🏽♂️ - link two</a></li>
<li><a href="#">🖌️ - link three</a></li>
</ul>
</div>
</div>
<div class="section1">
<div class="leftCaption">
<div class="main">
<strong>This website is awesome!</strong>
</div>
<div class="subtext">
<p>This website has some subtext that goes here, under the main title. It's a smaller font, and the color is lower contrast too!</p>
</div>
<div class="signContainer">
<a class="sign"href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Sign up</a>
</div>
</div>
<div class="image">
<p class="caption">Jit' Trippin'</p>
<img class="rick"src="images\rick.png" alt="This is a placeholder for the image.">
</div>
</div>
</div>
<div class="info">
<div class="infoTitle">
Some Random Information.
</div>
<div class="imageGallery">
<div class="imageContainer">
<img class="profile" src="" alt="image1">
<div class="captionProfile">
This is some subtext under an illustration or image
</div>
</div>
<div class="imageContainer">
<img class="profile" src="" alt="image2">
<div class="captionProfile">
This is some subtext under an illustration or image
</div>
</div>
<div class="imageContainer">
<img class="profile" src="" alt="image3">
<div class="captionProfile">
This is some subtext under an illustration or image
</div>
</div>
<div class="imageContainer">
<img class="profile" src="" alt="image4">
<div class="captionProfile">
This is some subtext under an illustration or image
</div>
</div>
</div>
</div>
<div class="quote">
</div>
<div class="call">
</div>
<div class="footer">
</div>
</body>
</html>