-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (90 loc) · 4.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Developer Portfolio</title>
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="Styles/portfolio.css">
</head>
<body class="open-sans-normal">
<header class="header secondary-bg">
<nav>
<h3 class="nav-title">Ma<span class="text-primary">r</span>y</h3>
<ul>
<li><a class=dark-2 href="">Portfolio</a></li>
<li><a class=dark-2 href="">Blog</a></li>
<li><a href=""><button class="btn-primary">Hire Me</button></a></li>
</ul>
</nav>
<div class="banner">
<div class="banner-content">
<h4 class="banner-greetings">Hi, I am</h4>
<h1 class="banner-title">Mary Hardy</h1>
<p class="banner-description">Shot what able cold new see hold.Friendly as an betrayed formerly he. Morning because as to society behaved moments.</p>
<button class="btn-primary">Download CV</button>
<button class="btn-primary">Contact</button>
</div>
<img class="banner-profile-picture" src="images/hardy.png" alt="">
</div>
</header>
<main>
<section class="about secondary-bg">
<h3 class="section-title">About Me</h3>
<p class="section-description">
I'm a designer & developer with a passion for web design. I enjoy developing simple, clean and slick websites that provide real value to the end user. Thousands of clients have procured exceptional resulfs while working with me. Delivering work within time and budget which meets clients requirements in our mata.
</p>
<div class="about-items">
<div class="about-item">
<p class="item-title">Name</p>
<p class="item-description">Mary Hardy</p>
</div>
<div class="about-item">
<p class="item-title">Email</p>
<p class="item-description">abc@def/com</p>
</div>
<div class="about-item">
<p class="item-title">DOB</p>
<p class="item-description">Dec 16,1971</p>
</div>
<div class="about-item">
<p class="item-title">From</p>
<p class="item-description">Dhaka, BD</p>
</div>
</div>
</section>
<!-- what i do section start -->
<section class="skills">
<h3 class="section-title text-center">What I Do</h3>
<p class="section-description text-center">I have more than 10 years experience building software for clients all over the world. Below is a quick overview of my main technical skill sets and technologies i use. Want to find out more about my experience? Check out my online resume and project portfolio.</p>
<div class="skills-container">
<div class="skill">
<img src="images/icons/js.png" alt="">
<h4 class="skill-title">Vanilla JavaScript</h4>
<p class="skill-description">List skill/technologies here. You can change the icon above to any of the 1500+ FontAwesome 5 free icons available. Aenean commodo ligula eget dolor.</p>
</div>
<div class="skill">
<img src="images/icons/react.png" alt="">
<h4 class="skill-title"></h4>
<p class="skill-description">List skill/technologies here. You can change the icon above to any of the 1500+ FontAwesome 5 free icons available. Aenean commodo ligula eget dolor.</p>
</div>
<div class="skill">
<img src="images/icons/nodejs.png" alt="">
<h4 class="skill-title"></h4>
<p class="skill-description">List skill/technologies here. You can change the icon above to any of the 1500+ FontAwesome 5 free icons available. Aenean commodo ligula eget dolor.</p>
</div>
<div class="skill">
<img src="images/icons/mongo.png" alt="">
<h4 class="skill-title"></h4>
<p class="skill-description">List skill/technologies here. You can change the icon above to any of the 1500+ FontAwesome 5 free icons available. Aenean commodo ligula eget dolor.</p>
</div>
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>