-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Chrismess - A whole mess o' Chrisses</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="index.css" />
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js" integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9" crossorigin="anonymous"></script>
</head>
<body>
<h1>Chrismess</h1>
<form id="movieform">
<input type="text" name="moviename" placeholder="Your movie..." autofocus required>
<input type="number" name="releaseyear" placeholder="Release year..." required>
<!-- buttons are better to use than input type=submit because you can insert images, videos into the button -->
<button type="submit">Add Movie</button>
</form>
<ul id="movies">
<!-- List elements added in the js file -->
</ul>
<script src="index.js"></script>
</body>
</html>