-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (67 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="style.css">
</head>
<body style="min-width:400px">
<header id="greet" class="mt-1" sytle="width:100%">
<div class="container">
<div class="row">
<div class="col-7">
<p>Welcome <span id="Username">Aarav</span>!</p>
<h1 id="date" class="display-2"></h1>
</div>
<div class="col-5">
<span>
<p><span id="temp"> <!--temperature in Degree celcius --></span> <b >° C</b> <img src="" id="weather-condition-icon" alt="weather condition image"> <span id="location"></span></p>
</span>
</div>
</div>
</div>
</header>
<main>
<!-- tips card -->
<div class="container">
<div class="row">
<div class="col">
<blockquote >
<p>❝ <span class="card-text">A ship in port is safe; but that is not what ships are built for.</span> ❞ </p>
</blockquote>
<p style="text-align: end;"> — <cite class="card-title" style="text-align: end;"></cite></p>
</div>
</div>
<!-- todo section -->
<div class="row">
<div class="col">
<h2 class="">To-Do List</h2>
<hr>
<form>
<div class="row">
<div class="col">
<label for="task" class="">Add a new Task</label>
</div>
</div>
<div class="row align-items-center primary me-1">
<div class="col-10 m-0">
<input type="text" id="task" class="form-control">
</div>
<div class="col-2 m-0">
<button type="submit" class="btn btn-primary">Add</button>
</div>
</div>
</form>
</div>
</div>
<ul id="tasklist" class="list-group mt-3">
</ul>
</div>
</div>
</main>
<footer class="m-3" >Change Name and Location <a href="setting.html">Setting</a></footer>
<script src="script.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>