-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholtre.html
41 lines (36 loc) · 924 Bytes
/
oltre.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
41
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="author" content="plumpy">
<meta name="description" content="Una pagina che parla di oltre.">
<title>Oltre</title>
<style>
html {
font-size: 21px;
font-family: sans-serif;
}
body {
background-color: purple;
color: white;
}
a {
color: black;
font-weight: 700;
}
</style>
</head>
<body>
<h1>Oltre</h1>
<p>Ciao sono una pagina oltre la normalità!</p>
<hr>
<ul>
<li>Dowload <a href="immagine.png" download>image</a></li>
<li>Contact me at <a href="mailto:[email protected]">mia mail</a></li> <!-- meglio non usarli!!! -->
<li>Dail <a href="tel:+391234567890">mio numero</a></li>
<li><a href="https://www.google.com/"target="_blank">Google</a></li> <!-- absolute ref, apre in nuova finestra -->
</ul>
<hr>
<a href="index.html">HOMEPAGE</a>
</body>
</html>