-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (51 loc) · 1.71 KB
/
about.html
File metadata and controls
56 lines (51 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title> Doodleocity</title>
<link rel="stylesheet" href="styles_test.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="menu-wrapper">
<header class="header">
<a href="#home" class="logo">Doodleocity</a>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</header>
</div>
<!-- end of navigation hamburger bar-->
<!--sarting to build about us information-->
<div class="container2">
<p><img src="images/4.JPG">
<h2 style="font-family: 'Sanchez';font-size: 48px;">About</h2>
<br>
<p>
Welcome to Doodleocity !!!
</p>
<br>
<p>
My name is XYZ. In 2020, I started reading this book:
The Daily Stoic. It contains 366 short meditations on
wisdom, perseverance, and the art of living, one for every
day of the year. So, I decided to make this page on this book.
I hope you enjoy my doodles.
</p>
</p>
<br>
<a href="https://github.com/cherry247" class="icons" >
<ion-icon name="logo-github" ></ion-icon>
</a>
<a href="https://www.instagram.com/doodleocity/" class="icons">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</div>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>