-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (30 loc) · 1.28 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>
<head>
<!-- <link href="about.html" rel="about"> -->
<link href="styles/style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&display=swap" rel="stylesheet">
<meta charset="utf-8">
<title>My Test Site</title>
</head>
<body>
<h1>My first test page</h1>
<img src="images/broly.png" alt="Dragon Ball character, Broly" width="500" height="400">
<p>This is Broly, a character in Dragon Ball that is an enemy of the protagonists.</p>
<p>The protagonists in Dragon Ball are</p>
<ul>
<li><a href="https://dragonball.fandom.com/wiki/Goku">Goku</a></li>
<li><a href="https://dragonball.fandom.com/wiki/Vegeta">Vegeta</a></li>
<li><a href="https://dragonball.fandom.com/wiki/Bulma">Bulma</a></li>
<li><a href="https://dragonball.fandom.com/wiki/Piccolo">Piccolo</a></li>
<li><a href="https://dragonball.fandom.com/wiki/Gohan">Gohan</a></li>
</ul>
<p><a href="https://dragonball.fandom.com/wiki/Dragon_Ball_(object)" target="_blank">All about Dragon Ball</a></p>
<button>Change user</button>
<form action="about.html">
<button type="submit">About</button>
</form>
<script src="scripts/main.js"></script>
</body>
</html>