-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
61 lines (58 loc) · 2.88 KB
/
1.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
<html>
<head>
<title>:::PROJECT2019:::</title>
<link rel="stylesheet" href="css.css">
<link rel="stylesheet" href="content.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body>
<div class="menu-top">
<a href="contact.html">ติดต่อเรา</a>
<a href="#top">กลับสู่ด้านเรา</a>
<a href="index2.html">หน้าหลัก</a>
<form>
<button type="reset">Reset</button>
<button type="submit" onclick="login()">Login</button>
<input type="password" placeholder="password" id="password">
<input type="textbox" placeholder="username" id="username">
</form>
<script>
function login(){
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
if(password != null && username != null){
alert("ยินดีต้อนรับคุณ "+username);
}else{
alert("กรุณากรอกข้อมูลให้ครบถ้วน");
}
}
</script>
</div>
<div class="page">
<div class="banner">
<div>
<img src="pic/logo.jpg" width="150" height="150">
<h1>TITLE</h1>
</div>
</div>
<div class="menu-bar">
<a href="1.html">หัวข้อ</a>
<a href="1.html">หัวข้อ</a>
</div>
<div class="content">
<h1>แคททาลียา</h1>
<p>
<b>8 สิงหาคม สวัสดีวันแมวโลก</b>
เอารูปลูกๆตอนที่มีคนประกาศตามหาบ้านให้ลูกมาอวด 😽😻 (น่ารักจนพ่อเหมียวรีบ cf ทันที 555)
แล้วก็รูปที่เราเจอกันวันแรก ตอนไปรับ พี่เค้าบอก “มีสองตัวนี้นะคะ อีกสองตัว จับไม่ได้ วิ่งหนีค่ะ” (นี่คือ พรหมลิขิตชัดๆ 😻) หลังจากวันนั้น สิ่งแรกที่นึกถึงตอนตื่นนอนและก่อนจะนอนก็คือ น้องชาบูและพี่หมูกระทะนี้หละค่ะ (ปลุกเก่ง!!!!! หนูหิววววว!!!!)
</p>
</div>
<div class="footer">
<p>
©Yupparaj Wittayalai School
<br><a href="#">โรงเรียนยุพราชวิทยาลัย</a> | <a href="#">สพม34.</a>
</p>
</div>
</div>
</body>
</html>