-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (70 loc) · 2.65 KB
/
index.html
File metadata and controls
78 lines (70 loc) · 2.65 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Haigsite - [Haig]</title>
<meta name="description" content="The official personal website and portfolio for Haig, showcasing projects, skills, and contact information.">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>[Haig]</h1>
<nav>
<ul>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero" class="hero">
<div class="container">
<h2>Hi, I'm Haig</h2>
<p>I am a professional bum with a passion wasting away.</p>
<a href="#contact" class="button">Get in Touch</a>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h3>About Me</h3>
<p>I specialize in fear and loathing. I'm currently working on it.</p>
</div>
</section>
<!--
<section id="projects" class="projects">
<div class="container">
<h3>My Projects</h3>
<div class="project-item">
<h4>Project Title 1</h4>
<p>A brief description of Project 1 and what I used to build it (e.g., HTML, CSS, JavaScript).</p>
<a href="#" target="_blank">View Project</a>
</div>
<div class="project-item">
<h4>Project Title 2</h4>
<p>A brief description of Project 2 and the technologies involved (e.g., Python, APIs, SQL).</p>
<a href="#" target="_blank">View Project</a>
</div>
</div>
</section>
-->
<section id="contact" class="contact">
<div class="container">
<h3>Contact Me</h3>
<p>I'd love to connect! You can reach me here:</p>
<ul>
<li>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></li>
<li>LinkedIn: <a href="https://linkedin.com/in/yourprofile" target="_blank">Your LinkedIn</a></li>
<li>GitHub: <a href="https://github.com/yourusername" target="_blank">Your GitHub</a></li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© <script>document.write(new Date().getFullYear())</script> [Your Name]. All rights reserved.</p>
</div>
</footer>
</body>
</html>