Skip to content
Open
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
30 changes: 30 additions & 0 deletions example.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Sample HTML Page</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}

h1 {
color: #4CAF50;
}

p {
color: #333;
}
</style>
<script>
function showMessage() {
alert("Hello, World!");
}
</script>
</head>
<body>
<h1>Welcome to My Page</h1>
<p>This is a sample HTML page with some CSS and JavaScript code.</p>
<button onclick="showMessage()">Click me</button>
</body>
</html>