-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (52 loc) · 2.34 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">
<title> Rachel Kamanga's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<div class="nav">
<ul class="list">
<li class="name">Rachel Kamanga</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
</ul>
</div>
<header>
<img src="images/rachel.jpg" alt="Drawing of Rachel Kamanga" class="profile-image">
<h1 class="tag name">Hello, I’m Rachel.</h1>
<p class="tag location">My home is Lilongwe, Malawi.</p>
</header>
<main class="flex">
<section id="background">
<h2>Background</h2>
<p> Hello! My name is Rachel Kamanga. I am a lifelong learner, always interested in expanding my skills. I love everything about the web.</p>
<p> I’m excited to bring my life experience to the process of building fantastic looking websites.</p>
<p> My friend recommended the Treehouse Java track for my thesis work. I've enjoyed Treehouse's learning approach ever since.</p>
</section>
<section id="goals">
<h2>Goals</h2>
<p>I have a decent foundation in HTML/CSS and I know the basics of JavaScript. With the techdegree, I look forward to increasing my knowledge, skills and abilities in:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>And more</li>
</ul>
<p>I’d like to learn how to build everything, from small business sites to rich interactive web apps.</p>
</section>
</main>
<footer>
<ul>
<li><a target="_blank" href="https://www.linkedin.com/in/rachel-kamanga-0a971555/" class="social linkedin">LinkedIn</a></li>
<li><a target="_blank" href="https://github.com/racheltaonga" class="social github">Github</a></li>
</ul>
<p class="copyright">© 2024, Rachel Kamanga.</p>
</footer>
</body>
</html>