init new fancy project for starting 2024
This commit is contained in:
20
public/index.html
Normal file
20
public/index.html
Normal file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LinkMeUp</title>
|
||||
<link rel="stylesheet" href="styles/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>LinkMeUp</h1>
|
||||
</header>
|
||||
<main id="social-links">
|
||||
<!-- Handlebars template will populate this section -->
|
||||
</main>
|
||||
<footer>
|
||||
<p>© 2024 <a href="https://wieerwill.de">WieErWill</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
32
public/styles/main.css
Normal file
32
public/styles/main.css
Normal file
@@ -0,0 +1,32 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #f4f4f4;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
header, footer {
|
||||
text-align: center;
|
||||
padding: 1em;
|
||||
background-color: #333;
|
||||
color: white;
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
#social-links {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
||||
gap: 1em;
|
||||
padding: 2em 0;
|
||||
}
|
||||
|
||||
#social-links div {
|
||||
background: white;
|
||||
padding: 1em;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
}
|
||||
Reference in New Issue
Block a user