Untitled
unknown
plain_text
2 years ago
1.4 kB
10
Indexable
HTML code:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Domestic Abuse Victims</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img src="logo.png" alt="Domestic Abuse Victims Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="seek-help.html">Seek Help</a></li>
</ul>
</nav>
</header>
<main>
<h1>Welcome to Domestic Abuse Victims</h1>
<p>This website aims to provide support and resources for domestic abuse victims.</p>
</main>
<footer>
<p>© 2022 Domestic Abuse Victims. All rights reserved.</p>
</footer>
</body>
</html>
```
CSS code (styles.css):
```css
body {
background-color: #4c0000;
color: #ffffff;
font-family: Arial, sans-serif;
}
header {
background-color: #330033;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img {
height: 50px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: #ffffff;
text-decoration: none;
}
main {
padding: 20px;
}
h1 {
color: #ff0000;
}
footer {
background-color: #330033;
padding: 10px;
text-align: center;
{Editor is loading...
Leave a Comment