-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/dc588436f1.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>トーマス.</title>
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#" class="nav-logo"><img src="/img/logo.png"></a>
<ul class="nav-menu">
<li class="nav-item">
<a href="index.html" class="nav-link" style="color: #E63E22ff">Home <br> <div style="height: 3px; width: 20px; background-color: #E63E22ff; border-radius: 20px;"></div></a>
</li>
<li class="nav-item">
<a href="resume.html" class="nav-link">Resume</a>
</li>
<li class="nav-item">
<a href="projects.html" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">Contact</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<main>
<div class="left">
<h1>トーマス .</h1> <br>
<div class="line" style="height: 8px; width: 100px; background-color: #E63E22ff; border-radius: 20px;"></div> <br> <br>
<h3>FRONT-END DEVELOPER</h3> <br>
<p>Welcome to my portfolio! I'm a passionate front-end developer with a solid track record of creating engaging and interactive user experiences. I hope my portfolio can illustrate my talent and dedication to creating amazing digital products.</p>
</div>
<div class="space" style="height: 100px;"></div>
<div class="right">
<img src="img/airpods-max-pink-witb-removebg-preview.png" alt="">
</div>
</main>
<footer>
<div class="footer-line" style="height: 7px; width: 10%; background-color: rgb(218, 79, 55); border-radius: 20px;"></div><p style="font-size: 12px; font-weight: 500;">©2023 Tommaso Romanzi</p><div class="footer-line" style="height: 7px; width: 70%; background-color: rgb(218, 79, 55); border-radius: 20px;"></div>
</footer>
<div class="space" style="height: 50px;"></div>
<script src="./app.js"></script>
</body>
</html>