-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (39 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Future Leaders</title>
<link rel="stylesheet" href="css/normalise.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/landing.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400|Roboto" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">
<img class="logo__image" src="images/logo.jpg" alt="Future Leaders Logo">
<span class="logo__text">Future</span>
<span class="logo__text logo__text--green">Leaders</span>
</a>
<a class="link" href="donate.html">
<span class="link__text">Donate</span>
</a>
</header>
<!-- Landing Page Content -->
<div class="cover cover--landing-bg">
<header class="heading">
<h1 class="heading__main">Future Leaders</h1>
<h2 class="heading__sub">Inspiring the next generation</h2>
</header>
</div>
<!-- end Landing Page Content -->
<section class="button-container">
<a href="donate.html" class="button-container__link">
<button class="button-container__button--green">DONATE</button>
</a>
</section>
</body>
</html>