-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
42 lines (42 loc) · 1.12 KB
/
Test.html
File metadata and controls
42 lines (42 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Share Your Travels</title>
<style>
:link {
text-decoration: underline;
color: blue;
}
a:visited {
text-decoration: underline;
color: purple;
}
a:hover {
text-decoration: none;
font-weight: bold;
}
input:active {
height: 100px;
width: 50%;
background: tomato;
}
ul::first-line{
color: skyblue;
}
</style>
</head>
<body>
<p>Links are an important part of any web page. To learn more about
links visit the <a href=“#”>W3C</a> website.</p>
<nav>
<ul>
<li><a href=“#” id = one>Canada</a></li>
<li><a href=“#”>Germany</a></li>
<li><a href=“#”>United States</a></li>
</ul>
</nav>
<form>
<input type="submit">
</form>
</body>
</html>