-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (81 loc) · 3.46 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
<!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="/style.css">
<title>landing page</title>
<!-- adding javascript here -->
<script>
// (function loadImage() {
// console.log("hello world")
// document.getElementById("random-image").src = "https://images.pexels.com/photos/7194914/pexels-photo-7194914.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260";
// })()
// cant get this to work so will come back to it later
</script>
</head>
<body>
<div class="header">
<h3>Header Logo</h3>
<ul>
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</ul>
</div>
<div class="about-site">
<div class="sign-up">
<h1>This Website is Awesome</h1>
<p>This website has some subtext that goes here under the main title. It is smaller font and the color is lower contrast.</p>
<button>Sign Up</button>
</div>
<div class="image">
<img src="test-img.jpeg">
</div>
</div>
<div class="random-div">
<h3>Some random information.</h3>
<div>
<div class="image-row-div">
<div class="image-div">
<img src="https://images.pexels.com/photos/7194914/pexels-photo-7194914.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" class="random-image" id="image">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-div">
<img src="https://images.pexels.com/photos/7194914/pexels-photo-7194914.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" class="random-image" id="image">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-div">
<img src="https://images.pexels.com/photos/7194914/pexels-photo-7194914.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" class="random-image" id="image">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-div">
<img src="https://images.pexels.com/photos/7194914/pexels-photo-7194914.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260" class="random-image" id="image">
<p>this is some subtext under an illustration or image</p>
</div>
</div>
</div>
</div>
<div class="quote-div">
<div>
<p class="quote">Lorem ipsum dolor sit amet consectetur adipisicing elit. Eum autem dolor quae qui commodi quasi in veniam porro placeat officiis laboriosam illum, suscipit ullam ipsam, fuga ad, soluta inventore? Architecto?</p>
</div>
<div class="quote-author"><p>- Thor, God of Thunder</p></div>
</div>
<div class="white-space">
<div id="sign-up-div">
<div>
<h3>Call to Action, It's time!</h3>
<p>Sign up for our product by clicking the bloody button!</p>
</div>
<div id="sign-up-button">
<button>Sign Up!</button>
</div>
</div>
</div>
<footer>
<p>Copyright @ The Odin Project 2021</p>
</footer>
</body>
</html>