-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BuddyUp Home</title>
<!-- Include links to CSS stylesheets below -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css" />
<link rel="stylesheet" href="stylesheet.css" />
</head>
<body>
<div id="root">
<div id="header">
<nav class="level" id="links">
<p class="level-item has-text-centered">
<img src="logo.png" alt="buddyup logo" style="height: 50px;">
</p>
<p class="level-item has-text-centered">
<a class="link is-info" id="homeButton" href="index.html"><button class="button is-success navbutton">Home</button></a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info" id="aboutButton" href="About/about.html"><button class="button is-success navbutton">About</button></a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info" id="tripsButton"><button class="button is-success navbutton">Trips</button></a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info" id="logButton" href="Login/login.html"><button class="button is-success navbutton">Login</button></a>
</p>
</nav>
</div>
<div id="body">
<section class="hero is-info is-fullheight-with-navbar is-bold">
<div class="hero-body">
<div class="container has-text-right">
<div class="column is-7 is-offset-5">
<img src="logowithbackground.png" alt="logo">
<p class="subtitle">Play Together, <br> Stay Together.</p>
<!-- <a class="button is-blue custombtn" href="Login/login.html">Login</a> -->
</div>
</div>
</div>
</section>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="../node_modules/axios/dist/axios.min.js"></script>
<script type="module" src="index.js"></script>
</body>
</html>