-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (47 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="css/index.css" rel="stylesheet">
<title>LIFEGPA - Welcome to the new you!</title>
<link rel="icon" href="../assets/favicon/favicon.png" type="image/png" />
</head>
<body class="container height-grow">
<header class="header">
<a href="/" class="brand-logo">
<img src="../assets/images/life_gpa_logo.png"
alt="Yellow square containing a darker colored stair with three steps.">
<div class="brand-logo-name"><span class="brand-logo-name-bold">LIFE</span>GPA</div>
</a>
<nav class="nav">
<ul class="nav-links">
<li><a href="features.html">Features</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="https://wizardly-swirles-432569.netlify.com/login">Log In</a></li>
</ul>
<div class="burger">
<div class="line-one"></div>
<div class="line-two"></div>
<div class="line-three"></div>
</div>
</nav>
</header>
<section class="home-main-section">
<div class="image-wrapper">
<div class="bg-girl-side-view"
title="A woman wearing a loose white shirt with reddish hairs knotted to a bun that looks upwards"
onmouseover="this.title='';">
</div>
</div>
<div class="call-to-action">
<h1 class="title">Welcome<br> to the new <span class="accent">YOU</span></h1>
<span class="subtitle">Assess your life quality with a single GPA </span>
<a href="https://wizardly-swirles-432569.netlify.com/register" class="btn">START
YOUR FREE TRIAL</a>
</div>
</section>
<script src="js/nav.js"></script>
</body>
</html>