-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.21 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
41
42
43
44
45
46
47
<!-- This is a comment in HTML. / Açò és un comentari en HTML -->
<!-- Prova de fer algún canvi o comenta el que entengues del codi. Publica-ho al teu repositori de gh-pages -->
<!DOCTYPE html>
<head>
<title>Hola mon! (HTML+CSS)</title>
<style>
/* Açò és un comentari en CSS */
body {
height: 75vh; width: 90%; margin: auto;
background-color: #2D2D2D;
}
h1 {
color: #C26356;
font-size: 30px;
font-family: Menlo, Monaco, fixed-width;
}
p {
color: white;
font-family: "Source Code Pro", Menlo, Monaco, fixed-width;
}
div {
height: 75vh; width: 90%; margin: auto;
}
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
</style>
</head>
<body>
<h1>Hola Món! Soc Guifré</h1>
<p>Aquest es un exemple molt senzill de "Hello World" fet amb HTML, CSS i un <code>iframe</code> d'un mapa que hem creat a <a href="https://www.instamaps.cat" target="_blank">Instamaps</a>.</p>
<div>
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.instamaps.cat/visor.html? businessid=3266848c019d7fb071dbcc9bc28a568e&3D=false&embed=1" >
</iframe>
</div>
</body>
</html>