-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="static/css/index.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fjalla+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+2:500&display=swap" rel="stylesheet">
<title>Welcome - TripMate</title>
<link rel = "icon" href = "static/img/tripmate-logo.png" type = "image/x-icon">
</head>
<body>
<div class="centerBlock">
<div class="logoBlock">
<img class="logoIcon" src = "static/img/tripMateWhite.png">
</div>
<div class="tripmate">Welcome to TripMate</div>
<div class="tagline">Your Travel Companion.</div>
<div class="goToNextPage"><a href="form.html">
<img class="nextIcon" src="static/img/next.png">
</a></div>
</div>
<script type="text/javascript" src="static/js/index.js"></script>
</body>
</html>