-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (34 loc) · 1.1 KB
/
index.html
File metadata and controls
48 lines (34 loc) · 1.1 KB
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
<html>
<head>
<link type="text/css" rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Roboto|Shadows+Into+Light|Sofia" rel="stylesheet">
</head>
<body>
<title>Client Project</title>
<div id="top">
<div id="header">
<button id="locations"> Famous locations </button>
<h1 id="title"> Rick and Morty </h1>
<button id="info"> Random Episode </button>
</div>
<div id="input">
<input id="searchInput" placeholder="Character Name">
<button id="searchButton"> Search </button>
<button id="randomCharac">Random Character</button>
</div>
</div>
<div id="categories">
<div id="categoryOne" class="one">
<h1>Human</h1>
</div>
<div id="categoryTwo" class="one">
<h1> Other </h1>
</div>
<div id="categoryThree" class="one">
<h1> Alien </h1>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>