-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (71 loc) · 3.59 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
<!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="styles.css"/>
<title>Landing Page</title>
</head>
<body>
<header id="first_div" class="adj_width_90">
<nav class="my_navbar">
<ul class="ul_left">
<li><b>Header Logo</b></li>
</ul>
<ul class="ul_right">
<li>header link one</li>
<li>header link one</li>
<li>header link one</li>
</ul>
</nav>
<div class="fl_row half">
<div class="fl_col" id="left_1st">
<h3>This website is awesome</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<button type="button">Sign up</button>
</div>
<img id="right_1st" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6anYJLE8_OMJV05MZm_WsE_FXnHiWzzeueL-UqGzDPwGIfgR8KBN9RNhDotURoZ3rDLk&usqp=CAU" alt="This is the alt text!"/>
</div>
</div>
</header>
<div id="second_div" class="adj_width_80">
<h1 id="information_header">Some random information.</h1>
<div class="fl_row" id="four_img_row">
<figure>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6anYJLE8_OMJV05MZm_WsE_FXnHiWzzeueL-UqGzDPwGIfgR8KBN9RNhDotURoZ3rDLk&usqp=CAU" alt="img_41">
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure>
<figure>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6anYJLE8_OMJV05MZm_WsE_FXnHiWzzeueL-UqGzDPwGIfgR8KBN9RNhDotURoZ3rDLk&usqp=CAU" alt="img_42">
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure>
<figure>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6anYJLE8_OMJV05MZm_WsE_FXnHiWzzeueL-UqGzDPwGIfgR8KBN9RNhDotURoZ3rDLk&usqp=CAU" alt="img_43">
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure>
<figure>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6anYJLE8_OMJV05MZm_WsE_FXnHiWzzeueL-UqGzDPwGIfgR8KBN9RNhDotURoZ3rDLk&usqp=CAU" alt="img_44">
<figcaption>this is some subtext under an illustration or image</figcaption>
</figure>
</div>
</div>
<div id="third_div" class="fl_col">
<h3 id="quote_text">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</h3>
<p><b>-Thor, God of Thunder</b></p>
</div>
<div id="fourth_div" class="adj_width_90 fl_row">
<div id="blue_div" class="fl_row">
<div class="fl_col">
<h3>Call to action! It's time</h3>
<p>This is the subtext!</p>
</div>
<div>
<button type="button">Sign up</button>
</div>
</div>
</div>
<footer class="adj_width">
<p>Copyright The Odin Project 2021</p>
</footer>
<body>