Skip to content

Instantly share code, notes, and snippets.

@manesec
Created September 20, 2024 22:18
Show Gist options
  • Save manesec/1cd35bb9097780cacbcf60ec399f0d1c to your computer and use it in GitHub Desktop.
Save manesec/1cd35bb9097780cacbcf60ec399f0d1c to your computer and use it in GitHub Desktop.
一個簡單的小網站
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Simple Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f0f0f0;
}
h1 {
color: #333;
}
p {
font-size: 16px;
line-height: 1.5;
}
ul {
list-style-type: square;
}
</style>
</head>
<body>
<h1>Welcome to My Webpage!</h1>
<p>This is a simple example of an HTML webpage. Below is a list of my favorite fruits:</p>
<ul>
<li>Apples</li>
<li>Bananas</li>
<li>Cherries</li>
<li>Dates</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment