-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (47 loc) · 2.92 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The MondayMag · About</title>
<link rel="icon" href="./icons/mondaymag-logo.PNG">
<!-- third-party styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<!-- css file link -->
<link href="./about.css" rel="stylesheet">
</head>
<body>
<header>
<div class="navbar">
<ul class="links">
<li><a href="./home.html" class="pink-wavy">home</a></li>
<li><a href="./issue1.html"class="green-wavy">issue 1</a></li>
</ul>
<div class="toggle_btn">
<i class="fa-solid fa-bars"></i>
</div>
</div>
<div class="dropdown_menu">
<li><a href="./home.html">home</a></li>
<li><a href="./issue1.html">issue 1</a></li>
</div>
</header>
<div class="about">
<div class="image">
<h1>about us</h1>
<center><img src="./about/ashna-emily-orange.png"></center>
</div>
<div class="text">
<p class="emily">I'm <strong>Emily</strong> and I love to create, appreciate, and draw inspiration from unique works! As someone who comes from an art background spanning across three generations, watching the world unravel from a creative point of view was one of my main motivations to start Mondaymag. I hope to inspire others through my own creativity, whether it be from an article, a photo, or a fun music rec. Super pumped for this project!</p>
<br>
<p class="ashna">I’m <strong>Ashna</strong>, an introspective bookworm who spends too much time on Twitter and Substack. There is no form of output I enjoy more than writing, and I have written about everything that interests me, ranging from how a bush changed my perspective on social barriers to the climate opportunity of cultured meat. I’m so excited about Mondaymag because I think it has the potential to positively shape the minds of its readers and generate more appreciation for the richness and magic present in every single day!</p>
<br>
<button><a href="https://www.instagram.com/themondaymag?igsh=MTlhbmdlcGh2dHZ6ZA==">connect with us on ig! →</a></button>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>