-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (77 loc) · 3.04 KB
/
Copy pathindex.html
File metadata and controls
81 lines (77 loc) · 3.04 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type = "text/css" href="./styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin-Example-Site</title>
</head>
<body>
<div class="header">
<div class="flex-header">
<div> Header Logo </div>
<div class = "subtext flex-links">
<div> link one </div>
<div> link two </div>
<div> link three </div>
</div>
</div>
<div class ="flex-comment">
<div>
<div id = "textHeader">
Awesome Website Template!
<div class ="subtext">
This website template is a fantastic template that The Odin Project made.
</div>
</div>
<button type="button" class="button"> Click Me </button>
</div>
<div>
<img src = "resources/placeholder.jpeg" alt="basic placeholder image" height="150" width="300">
</div>
</div>
</div>
<div class="mid-section">
<div class ="info-title">
Some random information
</div>
<div class = "image-holder">
<div>
<img src = "resources/placeholder.jpeg" alt="basic placeholder image" height="100" width="100">
<div class="subtext"> This text provides context to the above image</div>
</div>
<div>
<img src = "resources/placeholder.jpeg" alt="basic placeholder image" height="100" width="100">
<div class="subtext"> This text provides context to the above image</div>
</div>
<div>
<img src = "resources/placeholder.jpeg" alt="basic placeholder image" height="100" width="100">
<div class="subtext"> This text provides context to the above image</div>
</div>
<div>
<img src = "resources/placeholder.jpeg" alt="basic placeholder image" height="100" width="100">
<div class="subtext"> This text provides context to the above image</div>
</div>
</div>
</div>
<div class="quote-background">
<div class = "quote-section">
<p> This space can be for a quote, a testimonial, or just information.
It's good to have some sort of conclusion thing. This is extra text to mumble on.
</p>
<div> -Some big name</div>
</div>
</div>
<div class="bottom-section">
<div class="cta-box">
<div class = "section-1">
<div class = "cta-header"> Call to action! It's Time! </div>
<div class="cta-text">
Sign up for are plentiful emails by clicking that button!
</div>
</div>
<button class = "sign-up"> Sign up </button>
</div>
</div>
</body>
</html>