Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dfdfd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
iefsdfsdvffff
fsdfsfd
52 changes: 52 additions & 0 deletions kong101.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Hello Website</title>
<style>
/* ใช้ฟอนต์ Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
height: 100vh;
background: linear-gradient(135deg, #667eea, #764ba2);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Poppins', sans-serif;
color: white;
}

.container {
text-align: center;
background: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

h1 {
font-size: 3rem;
margin-bottom: 10px;
}

p {
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Hello 🌟</h1>
<p>ยินดีต้อนรับสู่เว็บไซต์เรียบง่ายแต่สวยงาม!</p>
</div>
</body>
</html>