-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<!--Change title TODO-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="fullPage">
<header>
<div class="header">
<a href="index.html"><h3 class="headerElement">Home</h3></a>
<a href="login.html"
><h3 class="headerElement">Login</h3></a
>
<a href=""><h3 class="headerElement">Resources</h3></a>
</div>
</header>
<h1>Invest in your <span class="highlight">Future</span></h1>
<h2><span class="highlight">Summary of Features</span></h2>
<a class="getStartedAnchor" href="login.html"><h2 class="getStarted">Get started</h2></a>
</div>
</body>
<script src= "scripts/index.js" type="module">
</script>
</html>