-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (58 loc) · 2.42 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
<!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">
<title>Bucket List Marketing Page</title>
<link href="https://fonts.googleapis.com/css family=Exo&display=swap" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<div class="page-container">
<nav class="navigation">
<div class="logo">
<a href="index.html">Bucket List</a>
</div>
<div class="links-box1">
<a href="#aboutTitle">About</a>
<a href="our-team.html">Our Team</a>
</div>
<div class="links-box2">
<a href="https://www.gcgsauce-bucketlist.com/login" target="_blank">Sign in</a>
<a href="https://www.gcgsauce-bucketlist.com/createnewuser" target="_blank">Create Account</a>
</div>
</nav> <!--close navigation-->
<header class="welcome">
<div class="welcome-text">
<h1>Keep your Bucket Lists and memories all in one place</h1>
</div>
<div class="welcome-button">
<button>Create Account</button>
</div>
</header> <!--close header-->
<section class="about">
<div class="about-content">
<h2 id="aboutTitle">About</h2>
<p>Bucket List is an app that makes it easy<br> to plan and organize your dreams and<br> aspirations for travel or<br> accomplishments.<br>You can add photos, journal entries,<br> voice recordings and videos - memories<br> of your adventures that you can share<br> with friends and family</p>
</div>
<div class="about-traveler">
<img src="./img/traveler pic.jpg" alt="Image of a woman traveling a city">
</div>
<div class="feature1">
<img src="./img/Icon Artwork.png" alt="plus sign">
<h2>Add media and Journal<br> Entries</h2>
<p>Bucket List helps you capture your memories by adding photos and journal entries to your bucket lists, so everything stays organized</p>
</div>
<div class="feature2">
<img src="./img/Share Icon.png" alt="share icon">
<h2>Share your Bucket lists</h2>
<p>Want to show off your trip to London? Share your memories with your friends and family</p>
</div>
</section> <!--close about section-->
<footer>
<p>Copyright 2019- Credit: Photo by Diego Jimenez on Unsplash</p>
</footer>
</div> <!--close page-container-->
</body>
</html>