-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (60 loc) · 2.47 KB
/
index.html
File metadata and controls
70 lines (60 loc) · 2.47 KB
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
<!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>Profile</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<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=Noto+Sans+Thai:wght@100;300&display=swap" rel="stylesheet">
<style type=text/css>
body {
font-family: 'Noto Sans Thai', sans-serif;
}
h1 {
text-align: center;
margin: auto;
font-size: 48px;
width: 222px;
border-bottom: 3px solid #333;
margin-top: 25px;
}
.img {
margin-top: 30px;
text-align: center;
}
.img img {
margin: auto;
width: 250;
height: 250;
background: #333;
border: 2px solid #333;
border-radius: 50%;
}
.text {
margin: auto;
text-align: center;
margin-top: 30px;
padding: 10px;
font-size: 24px;
}
</style>
<body>
<h1>My Profile</h1>
<div class="img">
<img src="./TP1.jpg" alt="" width="400" height="300">
</div>
<div class="text">
<span class="text-primary">ชื่อ-นามสกุล</span> : นายภพบดี คงเมือง
<span class="text-primary">อายุ</span> : 20 ปี <br>
<span class="text-primary">รหัสนิสิต</span> : 64021306 <br>
<span class="text-primary">คณะ</span> : เทคโนโลยีสารสนเทศและการสื่อสาร <br>
<span class="text-primary">สาขา</span> : วิศวกรรมคอมพิวเตอร์ <br>
<span class="text-primary">จบจาก</span> : โรงเรียนดงขุยวิทยาคม <br>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>