-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage003.html
More file actions
40 lines (39 loc) · 824 Bytes
/
page003.html
File metadata and controls
40 lines (39 loc) · 824 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
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Page Title</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
body
{
font-family: 'Roboto Condensed', sans-serif;
background-color: #eeeeee;
}
a:link
{
font-size: 14pt;
color: black;
text-decoration: none;
}
a:visited
{
color: black;
}
a:hover
{
background-color: black;
color: white;
}
</style>
</head>
<body>
<nav>
<a href="./page001.html">Home</a> 
<a href="#Apropos">À propos</a> 
<a href="./page002.html">Contact</a> 
<a href="./page003.html">Template</a>
</nav>
</body>
</html>