Initial Hello World site
This commit is contained in:
35
html/index.html
Normal file
35
html/index.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>www.kenjim.com</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
background: #0f172a;
|
||||
color: #f1f5f9;
|
||||
}
|
||||
.card {
|
||||
text-align: center;
|
||||
padding: 3rem 4rem;
|
||||
border: 1px solid #1e293b;
|
||||
border-radius: 1rem;
|
||||
background: #1e293b;
|
||||
}
|
||||
h1 { margin: 0 0 0.5rem; font-size: 2.5rem; }
|
||||
p { margin: 0; color: #94a3b8; font-size: 1.1rem; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="card">
|
||||
<h1>Hello World</h1>
|
||||
<p>www.kenjim.com</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user