-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (100 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name="viewport"
content="width=device-width,intial-scale=1.0">
<title>Simple portfolio</title>
<link rel="stylesheet"
href="style.css">
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
</head>
<body>
<header class="header">
<a href="#" class="logo"><span>Ma</span>no </a>
<nav class="navbar">
<a href="#" class="active">Portfolio</a>
<a href="#">Services</a>
<a href="#">Experience</a>
<a href="#">Projects</a>
<a href="#">Education</a>
</nav>
<a href="#" class="contact">Contact Me</a>
</header>
<section class="home">
<div class="home-content">
<h3> HI</h3>
<h1> I'm <span>Mano<br></span>a frontend Developer</h1>
<p>am seeking a job where I can improve my skills, work hard, and grow in my career. With my
knowledge of HTML and CSS, I aim to support the team and contribute to the company's success.</p>
<div class="btn-box">
<button class="btn-1">Hire Me</button>
<button class="btn-2">Experience</button>
</div>
</div>
<div class="img-box">
<img src="image.png.jpg" alt="">
</div>
</section>
<section class="about">
<div class="about-img">
<img src="image.png.jpg" alt="">
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<h3>Frontend <span>Developer</span></h3>
<p> I am seeking a job where I can improve my skills, work hard, and grow in my career. With my
knowledge of Java and Python, I aim to support the team and contribute to the company's success.</p>
<a href="#" calss="btn-2">Experience</a>
</div>
</section>
<section class="contact-form">
<h2 class="contact-em">Contact <span>Me</span></h2>
<form action="#">
<div class="input-box">
<input type="text" placeholder="full Name">
<input type="email"
placeholder="Email">
</div>
<div class="input-box">
<input type="number" placeholder="phone number">
<input type="text"
placeholder="subject">
</div>
<textarea name="" id="" cols="30"
rows="10" placeholder="your Message"></textarea>
<input type="submit" value="send message"
class="btn-1"> </form>
</section>
<footer class="footer">
<div class="social">
<a href="#"><i class='bx
bxl-facebook-circle'></i></a>
<a href="#"><i class='bx
bxl-linkedin-square'></i></a>
<a href="#"><i class='bx
bxl-twitter'></i></a>
<a href="#"><i class='bx
bxl-instagram-alt'></i></a>
</div>
<ul class="list">
<li>
<a href="#">FAQ</a>
</li>
<li>
<a href="#">Services</a>
</li>
<li>
<a href="#">About Me</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#">privacy policy</a>
</li>
</ul>
<p class="copyright">0 2024 Mano | All Rights Reserved</p>
</footer>
</body>
</html>