-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (64 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<link rel="stylesheet" href="style.css">
<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=Poppins:wght@100;300;400;500;600;800&display=swap" rel="stylesheet">
</head>
<body>
<!-- start header section -->
<header class="row">
<div class="half-width">
<h1 class="welcome">Welcome To</h1>
<h2 class="peter"><span class="parker">Peter Parker</span> World</h2>
<h3 class="build">Build Climber and Train Stopper</h3>
<p>You might saw me jumping, climbing buildings, and stopping trains. But nobody pays me a dime for that work. That's why I
am learning and mastering web development. I will not stop until I become the Web Development Hero.</p>
<a class="button" href="https://www.facebook.com/md.ashikurrahma.75" target="_blank">hire me</a>
</div>
<div class="half-width header-image">
<img src="image/my-bg.png" alt="header image">
</div>
</header>
<!-- end header section -->
<!-- start body section -->
<section class="row-body">
<div class="half-width header-image">
<img src="image/my-bg2.png" alt="body image">
</div>
<div class="half-width">
<h1 class="welcome">Dream Big</h1>
<h3 class="build">Become a web developer</h3>
<p>I already learned the basic HTML and CSS. I can build any simple website. I can even teach my grandma how to make simple
website. My goal is to build 3 websites and learn advanced topics.</p>
<a class="button" href="https://www.facebook.com/md.ashikurrahma.75" target="_blank">download resume</a>
</div>
</section>
<!-- end body section -->
<!-- start Experiences section -->
<h1 class="welcome-exp">Experiences</h1>
<section class="experiences-area">
<div class="half-width-1" id="stack">
<h1 class="exp-head">Full Stack Web Developer</h1>
<h3 class="exp-subhead">2021-Present | Pro Level Developer</h3>
<p>I am the master of HTML, CSS and Javascript. I know everything needed to make a website function, efficient. I didn't
stop with the web. I went beyond with most popular Javascript framework called Vue JS. I even know the deployment,
server and security. I will give you 100% web solution.</p>
</div>
<div class="half-width-1" id="baby">
<h1 class="exp-head">Baby Web Developer</h1>
<h3 class="exp-subhead">2020-2021 | Programming Hero Learner</h3>
<p>They didn't offer me a job. But I made myself as a remove web developer. I made their website and showed it to them.
They liked it. And uploaded the content. It was fun working at Programming Hero.</p>
</div>
</section>
<!-- end Experiences section -->
<footer>
<p>© Peter Parker 2023, a Programming Hero initiative.</p>
</footer>
</body>
</html>