-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 916 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>TVify</title>
<meta charset="UTF-8">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body>
<div id="app-container">
<header id="app-header">
<a href="index.html"><h1>TVify</h1></a>
</header>
<section id="app-body">
<form class="search-form">
<input type="text">
<button type="submit">Buscar</button>
</form>
<div class="tv-shows">
<div class="loader"></div>
</div>
</section>
<footer id="app-footer">
<p>Hecho con <3 por Francisco Campos Díaz</p>
</footer>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>