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
brooke 44fe155132 Update 'index.html'
Starting from scratch
2023-07-14 19:49:02 +00:00

60 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<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');
* {
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;
}
</style>
</head>
<body>
<div class="wrapper">
</div>
<section class="about-me">
<h1>About Me</h1>
<p>This is a brief description about me.</p>
</section>
</body>
</html>