-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage001.html
More file actions
56 lines (55 loc) · 1.18 KB
/
page001.html
File metadata and controls
56 lines (55 loc) · 1.18 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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;
}
blockquote
{
border: 3px solid #333333;
border-radius: 15px;
background-color: #e3e3e3;
}
</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>
<h1>Website Title</h1>
<p>Ceci est un paragraphe</p>
<blockquote>
╔ Hello</br>
╠═ item 1</br>
╠══ item 2</br>
╠════ item 3</br>
╚═════ item 4
</blockquote>
</blockquote>
</body>
</html>