-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
258 lines (258 loc) · 13.4 KB
/
about.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=320, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<title>BLUE♡</title>
<!-- CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Prompt:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg fixed-top navbar-dark bg-alpha">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">BLUEZO</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav ms-auto text-center">
<!-- ml-auto => ms-auto (start), mr-auto => me-auto (end) -->
<a class="nav-link" href="index.html">HOME</a>
<a class="nav-link active" aria-current="page" href="about.html">ABOUT</a>
<a class="nav-link" href="blog.html">PROJECT</a>
<a class="nav-link" href="contact.html">CONTACT</a>
</div>
</div>
</div>
</nav>
<!-- Header -->
<header data-jarallax="{'speed':0.2}" class="jarallax" style="background-image: url(images/joy7.jpg);">
<div class="banner-image">
<div class="col-12 text-center">
<h1 class="fst-italic">About</h1>
<p class="fw-light">Ramida Wisutwattanasak</p>
</div>
</div>
</header>
<!-- Content -->
<section class="container py-5 px-5">
<div class="row">
<div class="col-lg-6">
<h1>Profile</h1>
<h4 class="fw-light text-muted border-short-bottom-left">Personal Info</h4>
<p class="fw-light" style="margin-left:40px"><strong>First name :</strong> Ramida</p>
<p class="fw-light" style="margin-left:40px"><strong>Last name :</strong> Wisutwattanasak</p>
<p class="fw-light" style="margin-left:40px"><strong>Nickname :</strong> Blue</p>
<p class="fw-light" style="margin-left:40px"><strong>AKA :</strong> 7eiden</p>
<p class="fw-light" style="margin-left:40px"><strong>Education :</strong> Rangsit University</p>
<p class="fw-light" style="margin-left:40px"><strong>Interests :</strong> League of Legends, Java, SQL, HTML, CSS, etc.</p>
<p class="fw-light" style="margin-left:40px"><strong>Country :</strong> Thailand 🇹🇭</p>
</div>
<div class="col-lg-6">
<h4 class="fw-light text-muted border-short-bottom-left">Motto</h4>
<p class="fw-light" style="margin-left:40px">Mathematics may not teach us how to add love or minus hate
But it gives us every reasons to hope that every problem has a solution.
</p>
<h4 class="fw-light text-muted border-short-bottom-left">Social Media</h4>
<div style="margin-left: 40px;" class="a-none">
<a href="https://www.instagram.com/8lluex/" target="_blank">
<i class="fa fa-instagram" style="font-size: 25px"></i>
</a>
<a href="https://www.facebook.com/BlueRMD/" target="_blank">
<i class="fa fa-facebook" style="font-size: 25px"></i>
</a>
<a href="https://open.spotify.com/user/31szck6yxy7uz7bmx2usfwti7hz4?si=b196e797144e465d" target="_blank">
<i class="fa fa-spotify" style="font-size: 25px"></i>
</a>
<a href="https://github.com/8luex" target="_blank">
<i class="fa fa-github" style="font-size: 25px"></i>
</a>
</div>
</div>
</div>
</section>
<!-- ---------------- -->
<section data-jarallax="{'speed':0.2}" class="position-relative py-5 jarallax" style="background-image: url(images/joy2.jpg);">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<i class="fa fa-calendar" style="font-size: 45px; color: white;"></i>
<br>
<br>
<h1 style="color: white;">Timeline About me</h1>
</div>
</div>
</div>
</section>
<!-- Timeline -->
<section class="container py-5">
<div class="row">
<div class="col-12">
<ul class="timeline">
<li>
<div class="timeline-badge">
<p>17 October 2001</p>
</div>
<div class="timeline-card">
<h5 class="prompt-font">วันเกิดของเรา</h5>
<p class="text-muted fw-light prompt-font">วันพุธ ที่ 17 ตุลาคม 2544</p>
</div>
</li>
<li class="inverted">
<div class="timeline-badge">
<p>XX - 2005</p>
</div>
<div class="timeline-card">
<h5 class="prompt-font">เข้าเรียน Wanthamaria School</h5>
<p class="text-muted fw-light">Mathematics and Science</p>
</div>
</li>
<li>
<div class="timeline-badge">
<p>9 June 2020</p>
</div>
<div class="timeline-card">
<h5 class="prompt-font">เข้าเรียน Rangsit University</h5>
<p class="text-muted fw-light">Computer science</p>
</div>
</li>
<li class="inverted">
<div class="timeline-badge">
<p>Present</p>
</div>
<div class="timeline-card">
<h5 class="prompt-font">living life</h5>
<p class="text-muted fw-light">see me on a day of campus.</p>
</div>
</li>
<li class="timeline-arrow">
<i class="fa fa-angle-down" style="font-size:36px"></i>
</li>
</ul>
</div>
</div>
</section>
<!-- ---------------- -->
<!-- <section data-jarallax="{'speed':0.2}" class="position-relative py-5 jarallax" style="background-image: url(images/joy10.jpg);">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<i class="fa fa-trophy" style="font-size: 45px; color: white;"></i>
<br>
<br>
<h1 style="color: white;">Awards</h1>
</div>
</div>
</div>
</section> -->
<!-- Awards -->
<!-- <section class="container py-5 px-5">
<div class="row">
<div class="col-lg-6">
<h4 class="fw-light text-muted border-short-bottom-left">Creating web applications</h4>
<ul>
<li class="fw-light" style="margin-left:40px">First runner-up prize | Excellent student competition 2018</li>
<li class="fw-light" style="margin-left:40px">Gold Medal Award | Academic skills competition and the invention contest for private school students 2018</li>
<li class="fw-light" style="margin-left:40px">Gold Medal Award | Excellent student competition 2019</li>
</ul>
</div>
<div class="col-lg-6">
<h4 class="fw-light text-muted border-short-bottom-left">Creating web pages</h4>
<ul>
<li class="fw-light" style="margin-left:40px">Silver Medal Award | Excellent student competition in Thailand 4.0</li>
</ul>
</div>
<div class="col-lg-6">
<h4 class="fw-light text-muted border-short-bottom-left">Creating the Innovation</h4>
<ul>
<li class="fw-light" style="margin-left:40px">First prize | Inno Change The World 2019</li>
</ul>
</div>
<div class="col-lg-6">
<h4 class="fw-light text-muted border-short-bottom-left">Making the video</h4>
<ul>
<li class="fw-light" style="margin-left:40px">First prize | Sunthorn Phu Day 2019</li>
</ul>
</div>
</div>
</section> -->
<!-- ---------------- -->
<section data-jarallax="{'speed':0.2}" class="position-relative py-5 jarallax" style="background-image: url(images/joy6.jpg);">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<i class="material-icons" style="font-size: 45px; color: white;">people</i>
<br>
<br>
<h1 style="color: white;">Volunteer work</h1>
</div>
</div>
</div>
</section>
<!-- Volunteer work -->
<section class="container py-5 px-5">
<div class="row">
<div class="col-lg-6">
<ul>
<li class="fw-light" style="margin-left:40px">I visted older adults at the Camillian social center and the Bethany Nursing Home Ratchaburi.</li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li class="fw-light" style="margin-left:40px">I volunteered to sing the choir in feast of the Nativity of Mary 2019.</li>
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer class="semi-footer pt-4 px-5 pb-0 text-center text-md-start">
<div class="row">
<div class="col-md-4">
<h2>BLUEZO</h2>
<p class="fw-light">
<i class="fa fa-envelope"></i> [email protected]<br>
<i class="fa fa-envelope"></i> [email protected]<br>
<i class="fa fa-phone-square"></i> (+66)98-195-4166<br>
<i class="fa fa-map"></i> 98/76 Lorem ipsum dolor sit amet consectetur.
</p>
<a href="https://www.instagram.com/8lluex/" target="_blank">
<i class="fa fa-instagram icon-hold" style="font-size: 30px"></i>
</a>
<a href="https://www.facebook.com/BlueRMD/" target="_blank">
<i class="fa fa-facebook icon-hold" style="font-size: 30px"></i>
</a>
</div>
<div class="col-md-4">
<h4>Menu</h4>
<ul class="navbar-nav">
<!-- ml-auto => ms-auto (start), mr-auto => me-auto (end) -->
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="about.html">About</a>
<a class="nav-link" href="blog.html">PROJECT</a>
<a class="nav-link" href="contact.html">Contact</a>
</ul>
</div>
<div class="col-md-4">
<h4>Map</h4>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15487.464004398316!2d100.59293722267677!3d13.966580593338351!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30e281f3f3d9e601%3A0xdbdf0acb3d08f56a!2z4Lir4Lih4Li54LmI4Lia4LmJ4Liy4LiZ4LmA4Lih4Li34Lit4LiH4LmA4Lit4LiBIOC4leC4s-C4muC4pSDguKvguKXguLHguIHguKvguIEg4Lit4Liz4LmA4Lig4Lit4LmA4Lih4Li34Lit4LiH4Lib4LiX4Li44Lih4LiY4Liy4LiZ4Li1IOC4m-C4l-C4uOC4oeC4mOC4suC4meC4tSAxMjAwMA!5e0!3m2!1sth!2sth!4v1621674069325!5m2!1sth!2sth" width="100%" height="280" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
</footer>
<footer class="footer fw-light">
<span>© Copyright 2023 <a href="index.html">BLUEZO.</a>
All Right Reserved.
</span>
</footer>
<!-- Bootstrap 5 -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<!-- Jarallax -->
<script src="https://unpkg.com/jarallax@1/dist/jarallax.min.js"></script>
</body>
</html>