-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (167 loc) · 5.38 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<!-- General Information -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard</title>
<link rel="shortcut icon" type="image/jpg" href="./assets/img/tree.jpg" />
<link
rel="canonical"
href="https://getbootstrap.com/docs/5.0/examples/starter-template/"
/>
<link
href="https://fonts.googleapis.com/css?family=Architects Daughter"
rel="stylesheet"
/>
<!-- Bootstrap core CSS -->
<link href="./assets/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link href="./css/dashboard.css" rel="stylesheet" />
</head>
<!-- Body -->
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<!-- Settings Dropdown Menu -->
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle btn-dark"
href="#"
id="dropdown01"
data-bs-toggle="dropdown"
aria-expanded="false"
>Settings</a
>
<ul
class="dropdown-menu settings-background"
aria-labelledby="dropdown01"
>
<div id="settings">
<form action="#" class="name-form d-flex" id="name-form">
<input
type="text"
class="name-input"
id="name-input"
placeholder="Please type your name here"
/>
<button class="nameBtn" type="submit">Update</button>
</form>
</div>
<div>
<!-- future settings here -->
</div>
</ul>
</li>
<!-- Search Bar Dropdown Menu -->
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle btn-dark"
href="#"
id="dropdown01"
data-bs-toggle="dropdown"
aria-expanded="false"
>Search</a
>
<ul
class="dropdown-menu settings-background"
aria-labelledby="dropdown01"
>
<div id="settings">
<form
class="name-form d-flex"
method="GET"
action="https://www.google.com/search"
>
<input
class="name-input"
type="search"
name="q"
placeholder="Search Google"
aria-label="Search"
/>
<button class="nameBtn" type="submit">Search</button>
</form>
</div>
<div id="settings">
<form
class="name-form d-flex"
method="GET"
action="https://duckduckgo.com/?"
>
<input
class="name-input"
type="search"
name="q"
placeholder="Search DuckDuckGo"
aria-label="Search"
/>
<button class="nameBtn" type="submit">Search</button>
</form>
</div>
</ul>
</li>
<!-- Internet Speed Test Link -->
<li class="nav-item">
<a
class="nav-link btn-dark"
href="https://fast.com"
target="_blank"
rel="noreferrer noopener"
>Speed Test</a
>
</li>
<!--Audio Player-->
<audio controls loop src="./assets/morrowind.mp3" type="audio/mp3">
Your browser does not support the audio element.
</audio>
</div>
</div>
</nav>
<!-- Main Body -->
<!-- Greeting & Name -->
<div class="starter-template text-center py-5 px-3">
<h1>
<span class="greeting" id="greeting"></span>
<span class="greeting" id="name"> </span>
</h1>
</div>
<!--Weather-->
<div class="weather-container">
<div class="weather">
<!--code copied from weatherwidget.io-->
<a
class="weatherwidget-io"
href="https://forecast7.com/en/33d82n84d58/mableton/?unit=us"
data-basecolor="rgba(102, 26, 97, 0)"
data-textcolor="rgba(255, 255, 255, 1)"
>Mableton, GA, USA</a
>
</div>
</div>
<!--ToDo List-->
<div class="to-do-list" id="to-do-list">
<h1 class="to-do-list-header">Focus for Today</h1>
<div class="task-list">
<ul class="ul-task-list" id="ul-task-list"></ul>
</div>
<div class="input-and-add">
<form class="input-and-add-form" id="input-and-add-form" action="#">
<input
class="task-input"
type="text"
id="myInput"
placeholder="To Do"
/>
<button type="submit" class="addBtn">Add</button>
</form>
</div>
</div>
<!-- Bootstrap core JS -->
<script src="./assets/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script type="text/javascript" src="./js/dashboard.js"></script>
</body>
</html>