-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
34 lines (25 loc) · 839 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Fanclub for Spider-Man">
<title>Spider-Man</title>
</head>
<body style="background-image: url('webs.jpg'); background-attachment: fixed; background-repeat: no-repeat; background-size: cover;">
<h1 style="color: white;">Join the exclusive fanclub!</h1>
<form>
<label style="color: white;">Name: </label>
<input type="text">
<br>
<label style="color: white;">Email: </label>
<input type="text">
<br>
<br>
<input type="submit">
</form>
<button onclick="window.location.reload()">Refresh</button>
<br>
<a style="color: white;"href="index.html">Go Back</a>
</body>
</html>