-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (35 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Movie App</title>
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
</head>
<body>
<header>
<div class="title">
Movie App by <i>YASSINE HAMDOUNE</i>
</div>
<form id="form">
<input type="text" id="search" class="search" placeholder="Search">
</form>
</header>
<main id="main"></main>
<footer>
<p style="font-size: 1.5rem; font-weight: bold; color: #fff;">
Movie App
</p>
<p style="font-weight: bold; color: #fff;">
Made with ❤️ by YASSINE HAMDOUNE
</p>
<p class="links">
<a href="https://github.com/yassinehamdounemovieapp">Github</a>
<a href="https://www.instagram.com/yassine_ova/">Instagram</a>
<a href="https://www.linkedin.com/in/yassineham/">LinkedIn</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>