60 lines
No EOL
1.3 KiB
HTML
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> |