-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 2.35 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>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="styles.css">
<script type="text/javascript" src="main.js"></script>
<link rel="shorcut icon" href="pngwing.com.png">
<title>Gonzalo Maulella resume</title>
</head>
<body>
<header>
<nav>
<img
id="icon"
src="pngwing.com.png"
alt="icon"
width="20px"
>
<div id="refs">
<a class="refs" href="#aboutme">about me</a>
<a class="refs" href="#contact">contact</a>
</div>
</nav>
<div id="divHeader">
<h2>Gonzalo Maulella</h2>
</div>
</header>
<div id="aboutme">
<div id="divaboutme">
<p class="aboutme">Hello! My name is Gonzalo, I am 21 years old, I am from <a href="https://es.wikipedia.org/wiki/Paysand%C3%BA" target="_blank">Paysandú</a> although I currently live in <a href="https://es.wikipedia.org/wiki/Montevideo" target="_blank">Montevideo</a>, a Computer Engineering student at <a href="https://www.fing.edu.uy/" target="_blank">FING</a>.</p>
<div>
<p class="aboutme" style="text-align: center;"><strong>Skills</strong></p>
<ul class="aboutme">
<li><p>FPC (FreePascal)</p></li>
<li><p>C/C++</p></li>
<li><p>HTML/CSS</p></li>
</ul>
</div>
</div>
</div>
<div id="contact">
<h2>Contact</h2>
<form action="#" method="get">
<label for="name"></label>
<input type="text" name="name" id="" placeholder="Name" required>
<label for="mail"></label>
<input name="mail" type="mail" placeholder="Email" required>
<label for="textarea"></label>
<textarea name="textarea" id="" placeholder="Write here" required></textarea>
<button>Submit</button>
</form>
</div>
<footer>
<a id="upbutton" href="#">up</a>
</footer>
</body>
</html>