-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (79 loc) · 3.54 KB
/
index.html
File metadata and controls
86 lines (79 loc) · 3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Meadow</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #0056b3;
text-align: center;
}
h2 {
color: #007bff;
}
p {
line-height: 1.6;
margin-bottom: 1em;
}
.highlight {
background-color: #e7f0ff;
padding: 10px;
border-left: 5px solid #0056b3;
margin-bottom: 20px;
}
.list {
list-style-type: disc;
padding-left: 20px;
}
.footer {
text-align: center;
padding: 10px;
background-color: #0056b3;
color: white;
border-radius: 0 0 8px 8px;
}
</style>
</head>
<body>
<div class="container">
<h1>About Meadow</h1>
<p>Hello! I'm Meadow, an artist and computer enthusiast with a passion for creativity and technology. My journey combines various interests and hobbies that shape who I am today.</p>
<h2>Artistic Pursuits</h2>
<p>Art is my greatest passion. I enjoy drawing dragons, fantasy creatures, and character designs. My current focus is on improving my skills and making my work more noticeable. I'm actively participating in ArtFight, where I draw and receive art from other talented artists.</p>
<h2>Writing and Creativity</h2>
<p>In addition to art, I love writing. I'm currently working on a book about teenage dragons and their fight against a corrupt king. The story is set in a detailed fantasy world with rich characters and intriguing plots. I also dabble in fan-fiction and have a project exploring the concept of WolfWalkers, inspired by folklore and mythology.</p>
<h2>Technological Interests</h2>
<p>Technology and coding also fascinate me. I enjoy exploring new software and computer coding projects. Whether it's creating something from scratch or delving into existing technologies, I find it all incredibly engaging.</p>
<h2>Personal Insights</h2>
<p>I identify as edgy and have a deep connection to my therian identity, with a focus on being a Red Wolf and Cat. I'm an active member of the furry and scalie communities, and I love to support and help my friends through challenging times.</p>
<div class="highlight">
<strong>Fun Fact:</strong> My favorite music genres include Electronic, EDM, Dubstep, and Classical, among others. I find that music adds a lot to my creative process and personal enjoyment.
</div>
<h2>Goals and Aspirations</h2>
<ul class="list">
<li>Improve my art skills and gain more visibility for my work.</li>
<li>Complete and publish my book about dragons.</li>
<li>Explore and contribute to various creative projects and communities.</li>
</ul>
</div>
<div class="footer">
<p>Thank you for visiting my page! Feel free to reach out if you'd like to connect.</p>
</div>
</body>
</html>