-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 857 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
<!DOCTYPE html>
<html>
<head>
<title>iTunes</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<input type="search" id="id_searchTerm">
<div class="resultDiv" id="result"></div>
<input class="modal-state" id="modalDiv" type="checkbox" />
<div class="modal">
<label class="modal__bg" for="modalDiv"></label>
<div class="modal__inner">
<label class="modal__close" for="modalDiv"></label>
<div id="detailsModal">
</div>
</div>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>