-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-me.html
62 lines (47 loc) · 2.33 KB
/
about-me.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
52
53
54
55
56
57
58
59
60
61
62
<!--
This page is some small facts about me but doesn't contain anything out of the ordinary that isn't used on most of the webpages on my website.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lyla's TransFem Guide</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="NavBar.css">
<link rel="stylesheet" href="bg.css">
</head>
<div class="bg"></div>
<body>
<div class="nav-wrapper">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hrt.html">HRT</a></li>
<li><a href="fashion.html">Fashion</a></li>
<li><a href="support.html">Support</a></li>
<div id="moreButton" class="dropdown" onclick="moreClick()">
<a class="dropbtn">More</a>
<div class="dropdown-content">
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="glossary.html">Glossary</a></li>
</div>
</div>
</ul>
</nav>
</div>
<div class="white-box">
<h1 style="margin-top: 0px; margin-bottom: 15px">About me</h1>
<img style="border-radius: 50%; align-items: center; width: 25%; height: 25%;" src="photos/selfie.JPG" alt="">
<p style="margin-bottom: 0px">Hello, My name is Lyla, I'm a trans woman. <br> I am currently taking Creative
Computing at the University Of Portsmouth, this website was created as part of the Introduction to
Interactive Development module. <br> Some of my interests include computing and video games. <br> Some
information about me, as young as I can remember I've known my gender identity did not align with what I was
assigned at birth, when I was 12 I came out as non-binary, but when I was 15/16 I realized that wasn’t the
right label for me, so since then I’ve known I was trans, but due to where I was living at the time, it
wasn’t safe for me to come out. However since I moved to Portsmouth and I’ve been living my life as a woman,
I’ve never been happier. Ive also known since I was 12 that my sexuality is Pansexual.</p>
</div>
</body>
</html>