-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
77 lines (73 loc) · 3.02 KB
/
Copy pathabout.html
File metadata and controls
77 lines (73 loc) · 3.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eden Side | About</title>
<meta name="description" content="The making of a responsive website">
<meta name="keywords" content="web design, responsive web site">
<meta name="author" content="Joyce-O">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Eden Side</h1>
</div>
<div>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a class="current" href="about.html">About</a>
</li>
<li>
<a href="books.html">Books</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section id="newsletter">
<div class="container">
<h2>Subscribe To Our Newsletter</h2>
<form action="">
<input type="email" placeholder="Enter Email...">
<button type="submit" class="btn1">Subscribe</button>
</form>
</div>
</section>
<section id="main">
<div class="container">
<article id="main-col">
<h3 class="page-title">About Us</h3>
<p>Eden Side Foundation was created in 2013 to cater for the educational needs of rural and urban school children and orphanage homes by making book donations, teaching reading and writing, and Art.</p>
<p class="dark">The aim of this festival is mainly to reward wonderful children and encourage others who aim to be better in either their academics or in their non curricular endeavors; to enhance the reading culture among school children; to make them experience the other side of learning rather than in their school classrooms. </p>
</article>
<aside id="sidebar">
<div class="dark">
<h4>What We Do</h4>
<ul id="what-we-do">
<li>A creative writing workshop</li>
<li>Book reading session with a distinguished author for children</li>
<li>Free lunch for children</li>
<li>Book related discussions</li>
<li>Fine art display & Pop corn stand</li>
</ul>
</div>
</aside>
</div>
</section>
<footer id="about-foot">
<p>Joyce-O
<span id="copyright">copyright © 2018</span>
</p>
</footer>
</body>
</html>