-
Notifications
You must be signed in to change notification settings - Fork 0
/
about me.html
148 lines (121 loc) · 6.15 KB
/
about me.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
<!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>About me</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<header>
<!-- สร้างเมนู -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">AKR WEBSITE</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about me.html">About me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</div>
</div>
</nav>
</header>
<!-- about me section -->
<section class="about" id="about">
<div class="max-width">
<h2 class="title">About me</h2>
<div class="about-content">
<div class="column left">
<img src="assets/photo/profile.jpg" alt="">
</div>
<div class="column right">
<div class="text">I'm Akarin Sangyor and I'm a College student. <span class="typing-2"></span></div>
<p> Hello, my name is Akarin Sangyor or you can call me Fa. I'm 20 years old. My hometown is Songkhla. I'm a university student. Currently studying at the bachelor's degree level in Computer Science
Department at Maejo University, Chiang Mai. My favorite hobby is ride travel with my motorbike.</p>
</div>
</div>
</div>
</section><br><br><br>
<!-- gallary -->
<section id="gallary" class="p-5 gallary">
<div class="container border-5 border1">
<h1 class="text-center text-white text-decoration-underline"> MY PICTURES </h1><br>
<!-- pictures -->
<div class="row mb-4">
<div class="col-md-3">
<img src="assets/photo/แม่กำปอง.jpg"
class="img-fluid" style="margin-bottom: 20px;">
</div>
<div class="col-md-3">
<img src="assets/photo/column_page.jpg"
class="img-fluid" style="margin-bottom: 20px;">
</div>
<div class="col-md-3">
<img src="assets/photo/pro.jpg" class="img-fluid" style="margin-bottom: 20px;">
</div>
<div class="col-md-3">
<img src="assets/photo/travel.jpg"
class="img-fluid" style="margin-bottom: 20px;" style="height: 200px;">
</div>
</div>
</div>
</section>
<!-- footer -->
<div class="footer">
<footer class="bg-dark text-center text-white">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a class="btn btn-outline-light btn-floating m-1"
href="https://www.facebook.com/profile.php?id=100012605943726" role="button"><i
class="fab fa-facebook-f"></i></a>
<!-- Youtube -->
<a class="btn btn-outline-light btn-floating m-1"
href="https://www.youtube.com/channel/UCXqwKqeXgUyqCqcMgSKoY9Q" role="button"><i
class="fab fa-youtube"></i></a>
<!-- Instagram -->
<a class="btn btn-outline-light btn-floating m-1" href="https://www.instagram.com/fa_akr/"
role="button"><i class="fab fa-instagram"></i></a>
<!-- Github -->
<a class="btn btn-outline-light btn-floating m-1" href="https://github.com/fainwza007"
role="button"><i class="fab fa-github"></i></a>
</section>
<!-- Section: Social media -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3 table-responsive" style="background-color: rgba(0, 0, 0, 0.2);">
© 2021 Copyright by Akarin Sangyor:
<a class="text-white" href="index.html">AKR WEBSITE</a>
</div>
<!-- Copyright -->
</footer>
</div>
<!-- End of .container -->
</body>
</html>