-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
89 lines (86 loc) · 4.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/build/css/all.min.css">
<title>New Tab</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-8 left-col">
<h2 class="text-center" id="salutation">Good evening.</h2>
<!-- Search -->
<div class="searchbox">
<form class="SearchForm" method="get" action="https://google.com/search" autocomplete="off">
<input type="text" name="q" placeholder="Search Google" autofocus />
</form>
<span class="search-icon">
<svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg>
</span>
</div>
<!-- Headlines -->
<div class="headlines mt-5 row">
<div class="col-md-10 offset-md-1">
<h6>Headlines</h6>
<ul class="list-unstyled" id="topHeadlines">
</ul>
<div class="read-more float-left">
<a href="https://news.google.com">
<img src="https://lh3.googleusercontent.com/JDFOyo903E9WGstK0YhI2ZFOKR3h4qDxBngX5M8XJVBZFKzOBoxLmk3OVlgNw9SOE-HfkNgb=w48" height="16" width="16">
<span>More Headlines</span>
</a>
</div>
<div class="attribution float-right">
<a href="https://newsapi.org/" class="text-muted small"><small>Powered by News API</small></a>
</div>
</div>
</div>
</div>
<div class="col-4">
<div class="right-col">
<!-- Date / Time -->
<div class="time text-right">
<div id="txt">4:19</div>
<h5 id="today">Thursday, December 6</h5>
</div>
<!-- Weather -->
<div class="card weather">
<div class="card-body">
<div class="card-title">
<h2 id="cityName">Grand Rapids</h2>
</div>
<div class="card-subtitle mb-2 text-muted"><hr></div>
<!-- Current Weather -->
<div class="current-weather row" id="currentWeather"></div>
<!-- Weather Forecast -->
<div class="forecast row text-center" id="weatherForecast"></div>
<div class="card-subtitle mt-3 mb-2 text-muted"><hr></div>
<div class="float-right">
<a class="text-muted small" href="https://darksky.net/poweredby/"><small>Powered by Dark Sky</small></a>
</div>
</div>
</div>
<!-- Bookmarks -->
<div class="card bookmarks mt-3">
<div class="card-body pb-0">
<div class="card-title">
<h2 id="small">Favorites</h2>
</div>
<div class="card-subtitle mb-3 text-muted"><hr></div>
<div class="row" id="bookmarks"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<!-- <script src="assets/build/js/jquery.min.js"></script> -->
<script src="assets/build/js/all.min.js"></script>
</body>
</html>