-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (64 loc) · 2.94 KB
/
index.html
File metadata and controls
87 lines (64 loc) · 2.94 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
<!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>
<!-- CSS STYLES -->
<link rel="stylesheet" href="./assets/css/brand.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">
</head>
<body>
<!---- MENU NAVBAR -->
<header>
<nav>
<div class="logo-wrap">
<a href="#" class="logo">I-Code</a>
</div>
<div class="nav-items " id="nav-item-wrap">
<a href="#" class="nav-links">Home</a>
<a href="./public/skills.html" class="nav-links">Skills</a>
<a href="./public/about.html" class="nav-links">About</a>
<a href="./public/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>
<!-- INTRODUCTION SESSION -->
<div class="intro-box">
<section class="intro">
<span class="hey">Hey, I'm</span>
<h1>Pamela.</h1>
<p>Product designer and developer from Abuja, Nigeria. <br>I create custom websites to help businesses do better online.</p><br>
<button class="submit-button" style="align-content: center;">My Projects</button>
</section>
<section class="my-image ">
<img src="./assets/img/code-girl.svg" alt="A picture of a Laptop">
</section>
</div>
<!-- BOX SECTION -->
<div class="box-section">
<div class="box box1">
<p><h3>Clean – In thinking, in style.</h3></p> <br>
Simple, minimal and effective. This is my mantra and method. Clean code, fuss-free interfaces and expert execution, design as it should be.
</div>
<div class="box box2">
<p><h3>Clients. Curated.</h3></p> <br>
I take on a limited number of projects at one time. This quality control means I can give each one exactly what it needs – focus and time.
</div>
<div class="box box3">
<p><h3>Creator. Partner. Collaborator.</h3></p> <br>
Ideas are far from linear. As designer and developer, I can spearhead, support or polish your project or product at any stage it needs it.</p>
</div>
</div>
</main>
<!-- HAMBURGER LOGO -->
<script src="./assets/js/hamburger.js"></script>
</body>
</html>