* Add reliable http:// test * REUSE.toml: Add `test/www/**` entry * Use `cwd` instead to work around old http.server in Python 3.6 * Move test to `not-windows-any` * NetBSD: Add `python3` symbolic link * Prevent test from running on woodpecker
22 lines
342 B
HTML
22 lines
342 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My Simple Web Page</title>
|
|
<style>
|
|
body {
|
|
background-color: lightgrey;
|
|
}
|
|
h1 {
|
|
color: blue;
|
|
}
|
|
p {
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to My Page!</h1>
|
|
<p>This is a simple web page created using HTML.</p>
|
|
<a href="https://www.example.com">Visit Example</a>
|
|
</body>
|
|
</html>
|