generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
70 lines (52 loc) · 2.6 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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cal Buds</title>
<meta name="comp1800BBY04" content="Team 04's 1800 App">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap Library CSS CDN go here -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Boostrap Library JS CDN go here -->
<!-- Other libraries go here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Link to styles of your own -->
<!-- <link rel="stylesheet" href="./styles/style.css"> -->
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-expand-sm fixed-top bg-dark">
<div class="container-fluid">
</button>
<span class="navbar-text text-light mr-auto">
<img src="./images/calendar_icon.png" height="36">
Cal Buds</span>
</nav>
<br>
<br>
<br>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="/images/groupCalendar.jpeg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold lh-1 mb-3">The best new tool to schedule your groups.</h1>
<p class="lead">Sign up to to gain access!</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<button type="button" onclick="location.href = 'login.html'" class="btn btn-primary btn-lg px-4 me-md-2">Sign up now</button>
<button type="button" onclick="location.href = 'login.html'" class="btn btn-outline-secondary btn-lg px-4">Login</button>
</div>
</div>
</div>
</div>
<nav id="footerTemplate"></nav>
<!---------------------------------------------->
<!-- Your own JavaScript functions go here -->
<!---------------------------------------------->
<!-- Link to scripts of your own -->
<!-- <script src="./scripts/script.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="./scripts/skeleton.js"></script>
</body>
</html>