-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
90 lines (89 loc) · 4.36 KB
/
about.html
File metadata and controls
90 lines (89 loc) · 4.36 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
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About</title>
<link rel="stylesheet" href="assets/css/site.css">
</head>
<body>
<header class="sticky top-0 flex flex-col justify-between p-6 mx-auto md:flex-row gap-2 bg-gray-800 text-gray-400">
<section class="flex items-center mb-4 title-font md:mb-0 gap-2">
<img src="assets/img/logo.jpg" alt="Logo" width="40" height="40">
<h1 class="text-sm">Web Tech Final Project</h1>
</section>
<nav class="flex text-base md:ml-auto">
<ul class="flex gap-x-4 list-none">
<li><a href="index.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Home</a></li>
<li><a href="about.html" class="text-white border-b border-gray-400 hover:border-gray-200 hover:text-white">About</a></li>
<li><a href="contact.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Contact</a></li>
<li><a href="projects.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Projects</a></li>
</ul>
</nav>
</header>
<main class="mx-4">
<article class="mx-auto max-w-xl text-center">
<header class="my-4">
<h1 class="text-xl font-bold text-gray-500">Bio details</h1>
</header>
<figure class="mx-auto my-4">
<img src="assets/img/bio.jpg" alt="bio picture" width="400" height="400" class="mx-auto">
</figure>
<br>
<section class="my-4 text-left">
<h2 class="text-xl font-bold text-gray-500">
About Me
</h2>
<p>
Hi, I'm Lili - a passionate indie developer who loves to code.
I am currently completing a Certificate IV in Programming and
love building products using technologies like HTML, CSS, Javascript,
C#, .NET and SQL. I am curious, always ready to learn new things.
</p>
<br>
<h2 class="text-xl font-bold text-gray-500">
What I love about coding
</h2>
<ul>
<li>It is like solving puzzles!</li>
<li>It is a creative activity. I can build a lot of fun things!</li>
<li>I can work from anywhere!</li>
<li>I can automate a lot of repetitive tasks!</li>
</ul>
<br>
<h2 class="text-xl font-bold text-gray-500">
Interests
</h2>
<p>
Outside of coding, I enjoy reading, hiking, and travelling.
</p>
<br>
<h2 class="text-xl font-bold text-gray-500">
Resume
</h2>
<p>
See my resume page <a class="text-blue-600" href="resume.html">here</a>.
</p>
</section>
<br>
</article>
</main>
<footer class="text-gray-400 bg-gray-800 body-font w-full flex flex-col items-start justify-between p-6
md:flex-row gap-2">
<img src="assets/img/logo.jpg" alt="Logo" width="40" height="40">
<p class="flex flex-wrap pl-6 ml-6 text-base border-l border-gray-400 grow">
©Copyright 2025. Lili Zheng & Amir Khan
</p>
<nav class="flex text-base md:ml-auto">
<ul class="flex gap-x-4 list-none">
<li><a href="index.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Home</a></li>
<li><a href="about.html" class="text-white border-b border-gray-400 hover:border-gray-200 hover:text-white">About</a></li>
<li><a href="contact.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Contact</a></li>
<li><a href="projects.html" class="text-gray-400 border-b border-gray-400 hover:border-gray-200 hover:text-white">Projects</a></li>
</ul>
</nav>
</footer>
</body>
</html>