3
0
Fork 0
This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
singlefiledash/index.html

60 lines
1.3 KiB
HTML
Raw Normal View History

2023-07-12 04:43:56 +00:00
<!DOCTYPE html>
<html lang="en">
2023-07-12 04:43:56 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website Title</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=OpenSans:wght@400;700&display=swap');
* {
2023-07-12 04:43:56 +00:00
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: OpenSans, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #354150;
display: flex;
flex-direction: column;
}
.about-me {
padding: 2.5rem;
color: white;
}
.wrapper {
background-color: #223142;
position: relative;
width: 100%;
min-height: 100vh;
padding: 20px;
display: grid;
grid-template-columns: 1fr 1fr;
align-content: center;
justify-content: center;
gap: 24px;
}
2023-07-12 04:43:56 +00:00
</style>
</head>
2023-07-12 04:43:56 +00:00
<body>
<div class="wrapper">
</div>
<section class="about-me">
<h1>About Me</h1>
<p>This is a brief description about me.</p>
</section>
2023-07-12 04:43:56 +00:00
</body>
</html>