-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 822 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (25 loc) · 822 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<title>Title in the tab</title>
<!-- external CSS link -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Enter a Super Mario Character</h1>
<input type="text" name="" value="">
<button type="button" name="button">Get Character</button>
<div><strong>Character Name:</strong></div>
<p class="first"></p>
<div><strong>Game Series:</strong></div>
<p class="second"></p>
<div><strong>Release Location:</strong></div>
<p class="third"></p>
<div><strong>Character Image:</strong></div>
<img src="" alt="" >
<script type="text/javascript" src="main.js"></script>
</body>
</html>