-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathabout.html
41 lines (36 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Customize a Carrot: About</title>
<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=Nunito:wght@400;700&family=Roboto+Mono:wght@100;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body class="carrot__body">
<header>
<div class="carrot__headerHolder">
<h1>
<a href="index.html">Customize a Carrot</a>
</h1>
<nav class="carrot__nav">
<a href="about.html" class="carrot__navItem">About</a>
<a href="https://github.com/raclim/customize-a-carrot" class="carrot__navItem">Github</a>
</nav>
</div>
</header>
<main>
<div class="about__text">
<p>This website was created as a simple demo for the <a href="https://raclim.cool/workshops/intro-to-open-source.html">Introduction to Open Source</a> at CC Fest 2023.</p>
<p>Customize your carrot image by clicking on the buttons on the left side of the website. Feel free to download it once you're done.</p>
<p>I do not claim any ownership over the image assets.</p>
</div>
</main>
<script src="script.js"></script>
</body>
<footer>
<p>Rachel Lim 2023</p>
</footer>
</html>