-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (36 loc) · 1.54 KB
/
about.html
File metadata and controls
36 lines (36 loc) · 1.54 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us Page - HPI</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/styles_about.css">
<link rel="icon" type="image/x-icon" href="images\logo_pestaña-removebg-preview.png">
<style>
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=UnifrakturMaguntia&display=swap');
</style>
</head>
<body>
<nav>
<div class="logo">Human Program Interpreter</div>
<div class="menu-toggle">☰</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<button id="dark-mode-toggle">Dark Mode</button>
<div id="welcome-message">
<span>Welcome back to my portfolio! Explore my personal projects and discover my work in technology!</span>
<button id="close-message">×</button>
</div>
<section id="about" class="fade">
<h1 class="construction">About Us page under construction!</h1>
<p class="construction">Expect new updates soon.</p>
</section>
<script src="js/script.js"></script>
</body>
</html>