-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<div class="page-wrapper">
<header>
<div class="container">
<h1>Linda 😀</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main class="Frontpage">
<div class="container">
<div class="Frontpage-content">
<div class="Frontpage-text">
<h2 id="typing-effect"></h2>
<h3>Front-end Web Developer</h3>
<p>specializing in HTML, CSS, JavaScript, and React. I create user-friendly,
responsive websites and am dedicated to delivering exceptional digital experiences. Currently enhancing my skills
at ALX Nairobi,
I am eager to bring innovative solutions to your team.</p>
<div class="button">
<a href="LINDA ACHIENG CV_pdf.pdf" class="btn">Download CV</a>
</div>
</div>
<div class="Frontpage-image">
<img src="thumbnail4.png" alt="image">
<p class="text-infront"></p>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<div class="social-media">
<a href="https://www.linkedin.com/in/linda-achieng-a31412257/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/Linda-Achieng" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://x.com/achieng_li48689" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</div>
</footer>
<button id="scroll-to-top" title="Go to top">⇧</button>
</div>
</body>
<script src="home.js"></script>
</html>