-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
44 lines (36 loc) · 1.02 KB
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
41
42
43
44
<!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="styles.css">
<title>Tier List</title>
</head>
<body>
<h1 id="mainHeading">Tier List</h1>
<section id="sec1">
<form id="frm1">
<label for="tierName">Tier</label>
<input id="tierName" type="text" placeholder="Enter the tier name">
<input id="btn" type="submit" value="Create">
</form>
</section><br>
<section id="sec2">
<form id="frm2">
<label for="imgLink">Add Image</label>
<input type="url" id="imgLink" placeholder="Paste the image link here">
<button type="submit">Add</button>
</form>
</section>
<hr>
<section id="sec4">
</section>
<hr>
<section id="sec3">
</section>
<script src="tier.js"></script>
<script>
console.log("This is 2nd way to write script")
</script>
</body>
</html>