rizin/test/www/simple.html
Khairul Azhar Kasmiran 43cb43ed18
Add reliable http:// test (#6509)
* 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
2026-06-18 07:01:00 +08:00

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>