-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (55 loc) · 1.94 KB
/
index.html
File metadata and controls
61 lines (55 loc) · 1.94 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
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Why are you looking at me?</title>
<meta name="author" content="Samuele Ferri">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="assets/css/main.css"/>
<link rel="stylesheet" href="assets/css/fontawesome-all.min.css">
</head>
<body class="homepage">
<!-- main box -->
<section class="container">
<!-- Nav -->
<nav>
<!-- Mobile format -->
<details>
<summary>Home</summary>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="warehouse.html">Warehouse</a></li>
<li><a href="photoblog.html">Portfolio</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</details>
<!-- Desktop format -->
<div id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="warehouse.html">Warehouse</a></li>
<li><a href="photoblog.html">Portfolio</a></li>
<li><a href="about.html">About me</a></li>
</ul>
</div>
</nav>
<div class="blursquare">
<div style="padding: 5%;">
<h1>Welcome!</h1>
<h4>"Mathematics is a game played according to certain simple rules with meaningless marks on paper"<br>David Hilbert</h4>
<br>
My name is Samuele Ferri and I'm a <strong>mathematician</strong>!<br>
Currently, I'm working on my PhD in numerical analysis for cultural heritage.
</div>
<ul class="actions">
<li><a href="https://github.com/ferrixio" target="_blank" rel="noopener noreferrer">
<button id="github">Github <i class="fab fa-github"></i></button></a></li>
<li><a href="https://www.instagram.com/ferrixio/" target="_blank" rel="noopener noreferrer">
<button id="instagram">Instagram <i class="fab fa-instagram"></i></button></a></li>
</ul>
</div>
</section>
</body>
</html>