-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (80 loc) · 4.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/starter.css">
<title>Routine App</title>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light" style="background-color: #f9ebfc !important;">
<span class="navbar-brand mb-0 h1">Schedule Menu</span>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/sadienicole/schedulewebsite">Source Code (Github)</a>
</li>
</ul>
<a class="btn btn-outline-dark" href="walkthrough.html" role="button">Click here to get started</a>
</div>
</nav>
<!-- <div class="col-md-8 py-5 px-3 mx-auto"> -->
<br>
<br>
<br>
<div class="mx-auto" style="width: 60%;">
<div class="my-5">
<p class="font-weight-bold h1 text-center">We've got the necessities covered. Just select your preferences.</p>
<p class="font-weight-light h4 text-center py-3">Just fill in what you already have scheduled and what you want to schedule, and we will handle the rest.</p>
</div>
<div class="text-center">
<a class="btn btn-dark btn-lg text-center" href="walkthrough.html" role="button">Click here to get started</a>
</div>
<div class="text-center">
<img src="\media\stylizedcalendarpng.png" class="img-fluid" alt="Responsive image">
</div>
<hr class="my-5 w-25 mx-0">
<div class="row">
<div class="col-md-6">
<h2>Adding Bootstrap Icons</h2>
<p><a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> are included with the SVG sprite here, but there are other <a href="https://icons.getbootstrap.com/#usage">usage options</a>, too. They're styleable with text utilities and more.</p>
<svg class="bi text-danger" width="32" height="32">
<use xlink:href="node_modules/bootstrap-icons/bootstrap-icons.svg#heart-fill"/>
</svg>
<svg class="bi text-dark" width="32" height="32">
<use xlink:href="node_modules/bootstrap-icons/bootstrap-icons.svg#toggles"/>
</svg>
<svg class="bi text-primary" width="32" height="32">
<use xlink:href="node_modules/bootstrap-icons/bootstrap-icons.svg#shop"/>
</svg>
</div>
<div class="col-md-6">
<h2>Guides</h2>
<p>Read more detailed instructions and documentation on using or contributing to Bootstrap.</p>
<ul class="icon-list">
<li><a href="https://getbootstrap.com/docs/4.6/getting-started/introduction/">Bootstrap quick start guide</a></li>
<li><a href="https://getbootstrap.com/docs/4.6/getting-started/webpack/">Bootstrap Webpack guide</a></li>
<li><a href="https://getbootstrap.com/docs/4.6/getting-started/build-tools/">Contributing to Bootstrap</a></li>
</ul>
</div>
</div>
<hr class="my-5">
<p class="text-muted">Created and open sourced by the Bootstrap team. Licensed MIT.</p>
</div>
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.6/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script type="module" src="assets/js/starter.js"></script>
</body>
</html>