-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (40 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TV Show Search</title>
<link rel="icon" href="tv-favicon.svg">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab+Highlight:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div id="outer-container">
<div id="search-div">
<form class="init" id="search-form">
<h1><a href="#" id="logo-text">TV Star Search</a></h1>
<div id="spacer"></div>
<input type="text" name="query" placeholder="Enter actor's name..." class="search">
</form>
<div id="search-suggestions" class="init-suggestions"></div>
</div>
<div id="results-container" class="results-div">
<div id="actor-container">
<div id="actor-result" class="results-div">
<h1 id="actor-name"></h1>
<img id="actor-photo">
</div>
</div>
<div id="shows-container">
</div>
<div id="fellow-cast-outer-container">
<div id="fellow-cast-inner-container" class="results-div"></div>
</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>