-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (47 loc) · 1.7 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
59
60
61
<html lang="en">
<head>
<title> Zambo's website </title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0">
<link rel="icon" href="https://avatars.githubusercontent.com/u/46820947?v=4">
</head>
<body>
<!-- Main title -->
<div class="container">
<p id="mainTitle"> Zambodev </p>
</div>
<!-- Project -->
<div class="container">
<div class="title"> Latest Projects </div>
<table id="projTable"></table>
<a id="projectLink" href="https://github.com/zambodev">See more on GitHub</a>
</div>
<!-- About me -->
<div class="container">
<div class="title"> About Me </div>
<p class="text">
Hi, I'm Thomas, an italian developer who mostly works on
backend and low level stuff.
<br>
I like to keep up with tech
and Linux related news.
</dp>
</div>
<!-- Resume -->
<div class="container">
<div class="title"> Links </div>
<div class="subcontainer">
<a class="contactHref" href="https://github.com/zambodev">
<img src="images/github.png" alt="GitHub" title="GitHub" rel="noopener noreferrer"> </a>
<a class="contactHref" href="https://www.linkedin.com/in/thomas-zambelli-1a3a3b289/">
<img src="images/linkedin.png" alt="Linkedin" title="Linkedin" rel="noopener noreferrer"> </a>
</div>
</div>
<!-- Copyright -->
<p id="copyright"> Copyright - © - </p>
<script src="functions.js"></script>
</body>
</html>