Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modernization of index.html #435

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
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
55 changes: 48 additions & 7 deletions test/pyhttpd/htdocs/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,50 @@
<html>
<head>
<title>mod_h2 test site generic</title>
</head>
<body>
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Lato:wght@400;700&family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<title>mod_h2 test</title>
<style>
body {
font-family: Lato, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}

header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}

h1 {
margin-top: 0;
}

.iw {
margin: 1rem auto;
padding: 1rem;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
font-size: 10rem;
display: flex;
justify-content: center;
align-items: center;
margin-top: 18rem;

}
</style>
</head>
<body>
<header>
<h1>mod_h2 test site generic</h1>
</body>
</header>
<main>
<div class="iw">mod_h2 test site generic</div>

</main>
</body>
</html>