-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (53 loc) · 2.78 KB
/
about.html
File metadata and controls
67 lines (53 loc) · 2.78 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
<!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">
<!-- CSS STYLES -->
<link rel="stylesheet" href="./../assets/css/about.css">
<link rel="stylesheet" href="./../assets/css/navbar.css">
<!-- FONT AWESOME ICON -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<title>About Me</title>
</head>
<body>
<header>
<nav>
<div class="logo-wrap">
<a href="#" class="logo">About Me</a>
</div>
<div class="nav-items " id="nav-item-wrap">
<a href="./../brand.html" class="nav-links">Home</a>
<a href="./skills.html" class="nav-links">Skills</a>
<a href="#" class="nav-links">About</a>
<a href="./contact.html" class="nav-links ">Contact</a>
</div>
<div class="hamburger-wrap" id="menu-options" onclick="toggleNavbar()">
<i class="hamburger fas fa-bars"></i>
</div>
</nav>
</header>
<main>
<div class="about">
<!--ABOUT DESCRIPTION -->
<section class="about-description">
<p><h1> PAMELA ODEH </h1></p>
<p>
<h4>Know More..</h4><br>
Welcome to My Mini Portfolio website!<br>
My name is Pamela Odeh and presenting unique projects is what i do.<p>Pamela is a product designer and web developer currently based in Nigeria.</p> I am a skilled artist interested in design technologies. <br>
<p>I work both with businesses and individuals, and always find <br>a non-standard approach to the task.<br>
<br> Pamela is passionate about making sure that systems, interfaces, <br>language and graphics are emotive, human-friendly, aesthetically pleasing, clear, <br> on-brand and usable — with a touch of mellow smoothness. <br>I have worked in a variety of environments, from mega-consultancies <br> to small-ish agencies to product companies. <br> From workflow diagrams to detailed user interface mockups, <br>Pamela loves shaping and crafting on-screen experiences.
</p>
</section>
<!-- ABOUT IMAGE -->
<section class="about-image">
<img src="./../assets/img/about-page.jpg" alt="My Picture";>
</section>
</div>
</main>
<!-- HAMBURGER LOGO -->
<script src="./../assets/js/hamburger.js"></script>
</body>
</html>