-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (86 loc) · 3.41 KB
/
index.html
File metadata and controls
92 lines (86 loc) · 3.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Personal Homepage</title>
<!-- Include the icon font library, such as Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="styles.css"> <!-- We'll create this stylesheet later -->
</head>
<body>
<!-- Header Section -->
<header>
<h1>Guil H</h1>
<nav>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
</ul>
</nav>
</header>
<!-- Projects Section -->
<!--
Challenge: Add your project slideshow
* Place in the HTML in the projects section
* Add the slideshow's CSS to slideshow.css
* Include the JavaScript in script.js
-->
<section id="projects">
<h2>Projects</h2>
<!-- Placeholder for displaying your projects -->
</section>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<div class="about-content">
<img src="images/photo.jpg" alt="Guil's Picture">
<p>
Hi there! I'm Guil, a passionate web developer with a love for building
awesome websites. I enjoy experimenting with new technologies and
turning ideas into reality. When I'm not coding, you can find me exploring
nature or reading a good book.
</p>
<p>
Feel free to check out my <a href="path/to/your/resume.pdf" target="_blank">resume</a>
to learn more about my professional experience and skills.
</p>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<div class="skill">
<h3>HTML</h3>
<p>Proficient in writing semantic and accessible HTML code for building web pages.</p>
<div class="progress-bar">
<div class="progress" style="width: 90%;">90%</div>
</div>
</div>
<div class="skill">
<h3>CSS</h3>
<p>Skilled in styling web pages with CSS and creating responsive layouts.</p>
<div class="progress-bar">
<div class="progress" style="width: 85%;">85%</div>
</div>
</div>
<div class="skill">
<h3>JavaScript</h3>
<p>Familiar with JavaScript and building interactive features for websites.</p>
<div class="progress-bar">
<div class="progress" style="width: 70%;">70%</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="social-icons">
<a href="https://www.linkedin.com/your-profile" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/your-handle" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/your-handle" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
<p>© 2023 Guil H. All rights reserved.</p>
</footer>
</body>
</html>