-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 1.35 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="cssreset.css">
<link rel="stylesheet" href="style.css">
<title>RefManager</title>
</head>
<body>
<!--Navigation Bar-->
<nav>
<ul>
<li class="icon"><a href="index.html">ICON</a></li>
<li class="active"><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<!--Main Content-->
<main class="home">
<header>
<h1>Great projects need greater references.</h1>
<p>A convenient way to organise image and colour references for any and all artistic visions.</p>
<div class="home-buttons">
<!--Login Button-->
<a href="login.html">
<button class="login">
LOGIN
</button>
</a>
<!--Sign Up Button-->
<a href="signup.html">
<button class="sign-up">
SIGN UP
</button>
</a>
</div>
</header>
<aside>
<!--Hero Image-->
<img src="hero-image.jpg" alt="">
</aside>
</main>
</body>
</html>