-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 971 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile</title>
<style>
body {
background-color: black;
color: #00ff00;
font-family: "Courier New", Courier, monospace;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.profile {
border: 2px solid #00ff00;
padding: 20px;
border-radius: 10px;
white-space: nowrap;
overflow: hidden;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div class="profile hidden" id="profile">
<h1 id="name"></h1>
<p id="studentId"></p>
</div>
<!-- เรียกใช้ไฟล์ JavaScript ภายนอก -->
<script src="script.js"></script>
</body>
</html>