generated from SheCodesAus/plus-portfolio-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>Christin Estrella</title>
</head>
<body>
<header>
<input type="checkbox" id="menu-toggle" class="menu-toggle">
<label for="menu-toggle" class="hamburger-button">
<i class="fa fa-bars"></i>
</label>
<nav class="desktop-nav" aria-label="Primary">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="form.html">Contacts</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h1>CHRISTIN<br>ESTRELLA</h1>
<h2>{storyteller}.visualizer;</h2>
</section>
<div class="container">
<a href="https://github.com/CCestrella/CCestrella.github.io" target="_blank" aria-label="GitHub Profile">
<i class="fa-brands fa-square-github"></i>
</a>
<a href="https://www.linkedin.com/in/ccestrella/" target="_blank" aria-label="LinkedIn Profile">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
</main>
<footer>
<!-- Footer content -->
</footer>
</body>
</html>