-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (65 loc) · 3.35 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
<!-- referenced FunFacts Chrome extension https://chrome.google.com/webstore/detail/funfacts/mblmhpinekmkfpnhjaaelgkhloeglnkk-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Daily Dino</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class = "container-fluid">
<div class="row" style="padding-bottom:2%;"></div>
<div class = "row">
<div class = "col-sm-1"></div>
<div class = "col-sm">
<div class = "container-fluid border border-secondary round"
style="background-color:rgb(230, 230, 230);">
<form action="http://www.google.com/search" method="GET">
<div class="form-row">
<div class="form-group col-md-1">
<div id="dinoThumbnail"></div>
</div>
<div class="form-group col-md-11">
<input type="text" name="q" class="form-control" id="searchBar" placeholder="Search Google or type a URL">
</div>
</div>
<div class="form-group">
<input type="submit" class="form-control" id="searchButton" value="Google Search">
</div>
</form>
<div class = "row">
<div class = "col-sm-1"></div>
<div class = "col-sm-5">
<div id="dinoImg"></div>
</div>
<div class = "col-sm-5">
<h2 id="dinoName" style="display: inline;"></h2>
<p id="nickname" style="display: inline;"></p>
<p id="dinoDescription" style="padding-top:15px;"></p>
<p id="moreDescLabel"></p>
<ul id="moreDesc">
</ul>
</div>
<div class = "col-sm-1"></div>
</div>
<div class="popup" id="popupBtnID">
Sources
<div class="popuptext" id="popupTextID">
<a target="_blank" href="https://icons8.com/icon/kZ3rKBK582qK/dino">Dino</a> icon from <a target="_blank" href="https://icons8.com">Icons8</a>
<br>Random dinosaur from <a href="https://dinosaur-facts-api.shultzlab.com/">this API by shultztom</a>
<br>More info from <a href="https://paleobiodb.org/">PaleoDB</a>
<div id="wikipediaAttribution"></div>
</div>
</div>
</div>
</div>
<div class = col-sm-1></div>
</div>
<div class="row" style="padding-bottom:2%;"></div>
</div>
<script type="module" src="./content.js"></script>
</body>
</html>