-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="./css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<h1>Youtube App
<img style="width:120px; height:50px;" src="http://www.stickpng.com/assets/images/580b57fcd9996e24bc43c548.png" alt="logo">
</h1>
</header>
<form id="myForm">
<fieldset>
<legend> Youtube App </legend>
<label for="search-term">Buscar: </label>
<input type="text" id="searchTerm" class="formElement">
<input class="button" type="submit" id="submitButton" value="Submit">
</fieldset>
</form>
<div class="results">
</div>
<div class="Buttons">
<button id="prevButton" class="button">Previous Page</button>
<button id="nextButton" class="button">Next Page</button>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./js/main.js"></script>
</html>