-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hoklifter Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"rel="stylesheet"/>
<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=Noto+Serif&family=Poppins:wght@500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="navbar">
<ul class="nav-links">
<li><a href="#welcome-section" class="nav-links">Welcome</a></li>
<li><a href="#projects" class="nav-links">Projects</a></li>
<li><a href="#contact" class="nav-links">Contact</a></li>
</ul>
</nav>
</header>
<section id="welcome-section">
<h1>Hello, I'm Kauã.</h1>
<p>A software developer</p>
</section>
<section id="projects">
<h1>These are some of my projects</h1>
<div class="projects">
<a target="_blank" href="https://github.com/Hoklifter/VerbosityMeter/" class="project-tile">
<img src="/projects/Verbosity.png" alt="">
<p><span><</span>VerbosityMeter<span>/></span></p>
</a>
</div>
<a href="" class="show-all">
Show All <i class="ri-arrow-drop-right-line ri-2x"></i>
</a>
</section>
<section id="contact">
<h1>Let's work together</h1>
<div class="social-medias">
<a target="_blank" href="https://github.com/Hoklifter" id="profile-link" class="social-media">
<i class="ri-github-fill ri-4x"></i>
<p>GitHub</p>
</a>
<a href="" class="social-media">
<i class="ri-mail-fill ri-4x"></i>
<p>E-Mail Me</p>
</a>
<a href="" class="social-media">
<i class="ri-phone-fill ri-4x"></i>
<p>Call Me</p>
</a>
</div>
</section>
<footer>Created by Kauã da Silva Jan 2024</footer>
</body>
</html>