-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (116 loc) · 5.37 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
144
145
<!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">
<title>Assignment-01 (ReStart)</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=Poppins&family=Yeseva+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="menu-extra top-banner">
<ul>
<a href="#">About</a>
<a href="#">Work</a>
<a href="#">Portfolio</a>
<a href="#">Contact</a>
</ul>
</section>
<section class="top-section flexible-container">
<div class="half-width">
<div id="top-banner">
<h1>Stay Focused on</h1>
<h1 class="color-orange">Mission 2022</h1>
</div>
<p class="paragraph">
Hey! It's ABIR here. Welcome to my portfolio site. I am a full-stack web developer vastly
experienced in JS frameworks. Take a tour here. I hope you'll like it. I am still learning. If
you
think I could do better, don't forget to
mention. Stay tuned and kindly help me debugging myself.
</p>
<br>
<a class="button-link" href="https://www.facebook.com/abircse.nwu/" target="_blank"
rel="noopener noreferrer">Explore Now</a>
<br>
<br>
<p>Scroll down to explore more about us</p>
</div>
<div class="half-width">
<img src="images/person/abir.png" alt="" srcset="">
</div>
</section>
<section>
<div class="half-width">
<h2 id="mission-heading">My Mission in <span class="color-orange">2022</span></h2>
</div>
<div class="flexible-container">
<div class="mission-slide" id="mission-bg">
<img class="my-mission-image" src="images/illustrators/illustrator-1.png" alt="" srcset="">
<h3 class="my-mission-heading">Mission</h3>
<p>To finish the modules daily and submit all the assignments in time.</p>
</div>
<div class="mission-slide" id="vission-bg">
<img class="my-mission-image" src="images/illustrators/illustrator-2.png" alt="" srcset="">
<h3 class="my-mission-heading">Vission</h3>
<p>To work hard and keep thyself up to date constantly.</p>
</div>
<div class="mission-slide" id="goals-bg">
<img class="my-mission-image" src="images/illustrators/illustrator-3.png" alt="" srcset="">
<h3 class="my-mission-heading">Goals</h3>
<p>To become a renowned full-stack web developer in the world.</p>
</div>
</div>
</section>
<section class="coding-section">
<div class="flexible-container">
<div class="half-width">
<img src="images/pictures/coding.png" alt="" srcset="">
</div>
<div class="half-width">
<h2>Develop</h2>
<h2>Without Limits</h2>
<p class="paragraph">A programming language is for thinking about programs, not for expressing
programs you've already
thought of. It should be a pencil, not a pen</p>
<br>
<a class="button-link" href="#">Read the Documentation</a>
</div>
</div>
</section>
<section class="project-section">
<div class="flexible-container">
<div class="half-width">
<h2>Know our</h2>
<h2>Global Community</h2>
<p class="paragraph">The first 90% of the code accounts for the first 90% of the
development time. The
remaining
10% of the code accounts for the other 90% of the development time.</p>
<br>
<a class="button-link" href="#">Read the Documentation</a>
</div>
<div class="half-width">
<img src="images/pictures/project.png" alt="" srcset="">
</div>
</div>
</section>
<section class="form-container-extra container">
<form action="" class="message-form">
<h1>Stay in touch</h1>
<input type="text" name="name" id="" placeholder="Enter your name">
<input type="email" name="email" id="" placeholder="Enter your mail">
<textarea rows="4" cols="50" name="comment">
Enter text here...</textarea>
<button type="submit">SENT</button>
</form>
</section>
<footer class="footer-bg">
<h4 class="font-white">Mission <span id="footer-span">2022</span></h4>
<small class="font-white">Hard work, Perseverance, and Determination for 2022</small>
</footer>
</body>
</html>