-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (132 loc) · 5.98 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Exo+2&family=Finger+Paint&family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Open+Sans:wght@400;500&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,700&family=Signika+Negative:wght@300;400&family=Work+Sans:wght@200;300;400;500;600&family=Yanone+Kaffeesatz:wght@500&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="index.css">
<title>My HTML & CSS Portfolio Site</title>
</head>
<body>
<!---Hero Section Start--->
<div class="overlay">
<div class="hero">
<nav>
<h2 class="logo">Portfo<span>lio</span></h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<a href="" class="btn">Hire Me</a>
</nav>
</div>
<div class="content">
<h4>Hello, my name is</h4>
<h1>Edward Aja</h1>
<h3>I'm a Web Developer.</h3>
<div class="newsletter">
<form>
<input type="email" name="email" id="mail" placeholder="Click to to contact me on LinkedIn">
<i class="fa-solid fa-arrow-right"></i>
<input type="submit" name="submit" value="Hire Me">
</form>
</div>
</div>
</div>
<!-----About Us----->
<section class="about">
<div class="main">
<div class="about-text">
<h2>About Me</h2>
<h5 class="aboutme-profile"> <span>Developer</span>, <br> Designer & Writer</h5>
<p>
I am a front-end Web developer. I can provide clean and pixel perfect design.
I can also make a website beautiful and interactive with css web animations. A responsive design
makes a website more accessible to all users irrespective of their devices,
So, I pay close attention to responsiveness in all my web apps and websites. I am ready
to take your business a notch higher with my design and development skills.
</p>
<button type="button">Let's talk</button>
</div>
<div class="portfolio--image"> <img src="image/myportfolioimage.png" alt=""></div>
</div>
</section>
<!-----Service Section Start-->
<div class="service">
<div class="title">
<h2>Our Services</h2>
</div>
<div class="box">
<div class="card">
<i class="fas fa-bars"></i>
<h5>Web Development</h5>
<div class="para">
<p>
Every website should be built with two primary goals: Firstly, it needs
to work across all devices. Secondly, it needs to be fast as possible
</p>
<p style="text-align: center">
<a class="button" href="">Read more</a>
</p>
</div>
</div>
<div class="card">
<i class="far fa-user"></i>
<h5>Web Development</h5>
<div class="para">
<p>
Every website should be built with two primary goals: Firstly, it needs
to work across all devices. Secondly, it needs to be fast as possible
</p>
<p style="text-align: center">
<a class="button" href="">Read more</a>
</p>
</div>
</div>
<div class="card">
<i class="far fa-bell"></i>
<h5>Web Development</h5>
<div class="para">
<p>
Every website should be built with two primary goals: Firstly, it needs
to work across all devices. Secondly, it needs to be fast as possible
</p>
<p style="text-align: center">
<a class="button" href="">Read more</a>
</p>
</div>
</div>
</div>
</div>
<!-----Contact Me---->
<div class="contact-me">
<h2 class="contact-me-title">Contact Me</h2>
<p> Let Me Get You A Beautiful Website.</p>
<a class="button-two" href="#">Hire Me</a>
</div>
<!--------Footer Start------->
<footer>
<p>Aja Edward</p>
<p>For HTML & CSS Coding jobs and projects please click on the link bellow to reach out to me via email,
linkedIn or Facebook.</p>
<div class="social">
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-linkedin-in"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-github"></i></a>
</div>
<p class="end">Copyright <span>© 2022</span> By Aja Edward </p>
</footer>
</body>
</html>