-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (89 loc) · 3.13 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
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<title>Landing Page</title>
</head>
<body>
<!-- Header with Logo and Nav Links -->
<header>
<h1 class="logo">LOGO</h1>
<ul class="nav-links">
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#projects" class="nav-link">projects</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</header>
<main>
<!-- About section, fill entire viewport -->
<div id="about">
<div class="about-body">
<h2 class="about-title">This is my about title</h2>
<p class="about-text">
This is where the subtext for our about section goes. The text is
smaller and a lower contrast.
</p>
<button class="about-button">Message us</button>
</div>
<div class="about-image">
<p>This is where an image will go.</p>
</div>
</div>
<!-- Projects section. Wrapping flexbox showcasing project snippets with links -->
<div id="projects">
<h2 class="projects-title">Projects Section Title</h2>
<div class="project-cards">
<div class="card">
<a class="card-link">
<div class="card-image"></div>
</a>
<p>This is some text describing this project. Isn't it cool?</p>
</div>
<div class="card">
<a class="card-link">
<div class="card-image"></div>
</a>
<p>This is some text describing this project. Isn't it cool?</p>
</div>
<div class="card">
<a class="card-link">
<div class="card-image"></div>
</a>
<p>This is some text describing this project. Isn't it cool?</p>
</div>
<div class="card">
<a class="card-link">
<div class="card-image"></div>
</a>
<p>This is some text describing this project. Isn't it cool?</p>
</div>
</div>
</div>
<!-- Quote to grab attention and break up webpage -->
<div class="quote">
<p class="quote-body">
Looks like a quote goes here. It should be something cool that
resonates with people. Make it spark emotions in them so they
gravitate towards us.
</p>
<p class="quote-author">- Anonymous</p>
</div>
<!-- Contact section. Call to action at bottom of page -->
<div id="contact">
<div class="contact-text">
<h2 class="contact-title">Work with us! It's time!</h2>
<p class="contact-body">Message us, we know you think we are cool.</p>
</div>
<button class="contact-button">Message us</button>
</div>
</main>
<!-- Footer with copyright -->
<footer>
<div><p>Copyright © Zan Zirbel 2022</p></div>
</footer>
<script src="scripts.js"></script>
</body>
</html>