-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (109 loc) · 5.19 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
<!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="stylesheet" href="style.css">
<link rel="stylesheet" href="assets/css/media-query.css">
<link rel="shortcut icon" href="assets/img/fahmiduzzaman-sagar.jpg" type="image/x-icon">
<title>Portfolio-Project</title>
</head>
<body>
<!-- header section -->
<header>
<div class="header-wrapper container">
<div class="logo"><a href="#">John.</a></div>
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Works</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
<a href="#" class="btn-primary">Hire me</a>
</div>
</header>
<!-- start main part -->
<main>
<!-- hero section -->
<section class="hero">
<div class="hero-wrapper container">
<div class="john-img">
<img src="assets/img/Ellipse 1.png" alt="">
</div>
<div class="john-creative">
<h1>Hi, I am <span>John. Creative</span> Developer</h1>
<p>How do you know you are a web developer? A: You spend more time debugging than developing. 😂</p>
<a href="#" class="btn-secendry">Download Resume</a>
</div>
</div>
</section>
<!-- jhon about -->
<section class="about">
<div class="about-wrapper container">
<div class="john-about">
<img src="assets/img/unsplash_6anudmpILw4.png" alt="jhon-about">
</div>
<div class="john-delighted">
<h1>Delighted to <span>meet</span> you</h1>
<p>I'm a John product designer living in San Francisco, CA. UX is central to everything I do. I love to work on meaningful projects with inspiring, creative people that challenge the status quo.</p>
<a href="#" class="btn-learn-more">Learn More</a>
</div>
</div>
</section>
<!-- john works -->
<section class="mywork container"><h1><span>My</span> Work</h1></section>
<section class="john-works">
<div class="john-works-wrapper container">
<div class="john-box john-design">
<img src="assets/img/image 3.png" alt="design works">
<p>Making a design system from scratch</p>
<a href="#" class="btn-link">Learn More</a>
</div>
<div class="john-box john-protfolio">
<img src="assets/img/image 2.png" alt="portfolio">
<p>Stunning portfolio website design using React</p>
<a href="#" class="btn-link">Learn More</a>
</div>
<div class="john-box app-designed">
<img src="assets/img/image 1.png" alt="app-designed">
<p>A powerful blog app designed using Vue JS</p>
<a href="#" class="btn-link">Learn More</a>
</div>
</div>
</section>
<section class="myinsight container"><h1><span>Insight</span></h1></section>
<section class="insights">
<div class="insights-wrapper container">
<div class="featured">
<h4>FEATURED</h4>
<h2 class="feature-left">Making a design system from scratch</h2>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
<a href="#" class="btn-link-insight">Learn More</a>
</div>
<div class="featured">
<h4>FEATURED</h4>
<h2>Vertically Spaced & Dynamic Elements</h2>
<p>Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet.</p>
<a href="#" class="btn-link-insight">Learn More</a>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer>
<div class="footer-wrapper container">
<div class="social-link">
<ul>
<li><a href="#"><img src="assets/img/fb.png" alt="fb"></a></li>
<li><a href="#"><img src="assets/img/insta.png" alt="fb"></a></li>
<li><a href="#"><img src="assets/img/Vector.png" alt="fb"></a></li>
<li><a href="#"><img src="assets/img/Linkedin.png" alt="fb"></a></li>
</ul>
</div>
<p>Copyright ©2023 All rights reserved </p>
</div>
</footer>
</body>
</html>