-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
77 lines (74 loc) · 2.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="Styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
/>
</head>
<body>
<div class="container">
<nav>
<a href="index.html" class="logo">Sharon</a>
<ul class="nav_list">
<li><a href="#second_section">About</a></li>
<li><a href="#third_section">Skills</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">LinkeIn</a></li>
<li><a href="https://github.com/starbele">Github</a></li>
</ul>
</nav>
<section class="first_section">
<img src="images/Image.jpg" alt="profile pic" />
<h3>Hi there! </h3>
<h1>I am Sharon,a Software tester or you can call me a QA Analyst</h1>
</section>
<section id="second_section">
<h1>About Me</h1>
<p>
I am passionate about testing, finding faults in softwares and bringing
constructive criticism for delivering great products. Finding bugs and
finding a root cause of the problem is my personal mantra
to bring customer focus and satisfaction as well as testing with the
end-user in mind.
</p>
<p>When am not testing or thinking of how customers use our products and how it works, I like to watch sci-fi movies</p>
</section>
<section id="third_section">
<h1>SKILLS</h1>
<div class="skillset">
<p>HTML</p>
<div class="html"><h3>100%</h3></div>
<p>CSS</p>
<div class="css"><h3>85%</h3></div>
<p>PYTHON</p>
<div class="python"><h3>55%</h3></div>
<p>PHP</p>
<div class="php"><h3>65%</h3></div>
</div>
</section>
<footer>
<div class="footer_container">
<address>
Abuja, Nigeria
</address>
<div class="socials_icon">
<a href="https://github.com/Starbele" target="_blank"><img src="images/github.svg" alt="github"></a>
<a href="https://www.linkedin.com/in/sharonogbogu?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BIoTUgG5JQjqL%2FdvaNDVW0Q%3D%3D" target="_blank"><img src="images/linkedin.svg" alt="linkedin"></a>
<a href="mailto:[email protected]" target="_blank"><img src="images/gmail.svg" alt="gmail"></a>
</div>
</div>
<h6>© copyright 2022</h6>
</footer>
</div>
</body>
</html>