-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·58 lines (34 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<!-- É assim que se inserem comentários. -->
<html lang="pt">
<head>
<title> Francisco Valente </title>
<meta charset="UTF-8">
<meta name="author" content="Francisco">
<meta name="description" content="Descrição do meu site pessoal">
<link rel="icon" href="favicon.ico" type="image/apple-touch-icon.png" />
<!-- Podemos importar fontes do GoogleFonts mas temos de inserir antes do ficheiro CSS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.google.com/specimen/Bitter?category=Serif,Monospace">
<!-- Comandos para inserir ficheiro .css e .js-->
<link rel="stylesheet" href="style.css" />
<!-- <script src="my-js-file.js" defer></script> -->
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="body-text">
<h1> Website under construction </h1>
</div>
<div class="bottom-text">
<p class="body-text">
Mais informação em:
<a href="https://www.linkedin.com/in/francisco-valente-pereira/" title="LinkedIn" class="btn btn-linkedin btn-lg">
<i class="fa fa-linkedin fa-fw"></i>
</a>
</p>
</div>
</body>
</html>