<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anya Vance - Dark Romance Author</title>
<style>
body {
font-family: 'Georgia', serif;
background-color: #0f0f0f;
color: #e0e0e0;
margin: 0;
padding: 0;
}
header {
background-color: #1a1a1a;
padding: 20px;
text-align: center;
}
header h1 {
color: #d4af37;
font-size: 3em;
}
nav {
display: flex;
justify-content: center;
background-color: #333;
}
nav a {
color: #e0e0e0;
padding: 14px 20px;
text-decoration: none;
text-transform: uppercase;
}
nav a:hover {
background-color: #575757;
}
section {
padding: 20px;
}
.about, .books, .art, .contact, .business {
margin: 20px auto;
max-width: 800px;
border: 1px solid #d4af37;
padding: 20px;
background-color: #1a1a1a;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #e0e0e0;
}
</style>
</head>
<body>
<header>
<h1>Anya Vance</h1>
<p>Dark Romance Author</p>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#books">Books</a>
<a href="#art">Art</a>
<a href="#contact">Contact Me</a>
<a href="#business">Business Inquiries</a>
</nav>
<section id="about" class="about">
<h2>About Me</h2>
<p>Welcome! I'm Anya Vance, a passionate Dark Romance fiction author. At 31 years old and a true Scorpio, I have always been an avid reader of romance novels. My writing delves into the depths of complex characters placed in relatable scenarios, intertwined with a dark, sensual twist. I create stories for readers who enjoy the works of Ana Huang, Monica Murphy, and H.D. Carlton. Join me as I explore the darker side of romance, where obsession and possession meet love in its most enticing form.</p>
</section>
<section id="books" class="books">
<h2>Books</h2>
<p>Stay tuned for my upcoming releases and delve into the world of dark romance. More details coming soon.</p>
</section>
<section id="art" class="art">
<h2>Art</h2>
<p>Explore the visual representations of my stories. Gallery and more content will be available soon.</p>
</section>
<section id="contact" class="contact">
<h2>Contact Me</h2>
<p>If you would like to get in touch, feel free to send me an email at <a href="mailto:contact@anyavance.com">contact@anyavance.com</a>.</p>
</section>
<section id="business" class="business">
<h2>Business Inquiries</h2>
<p>For business inquiries, please reach out to <a href="mailto:business@anyavance.com">business@anyavance.com</a>. I'm open to collaborations, book signings, and other professional opportunities.</p>
</section>
<footer>
<p>© 2024 Anya Vance. All rights reserved.</p>
</footer>
</body>
</html>