-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (88 loc) · 3.38 KB
/
index.html
File metadata and controls
91 lines (88 loc) · 3.38 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
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Eden Side | Welcome</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>
<!-- to format older browsers -->
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1>Eden Side</h1>
</div>
<div>
<nav>
<ul>
<li>
<a class="current" href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="Books.html">Books</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section id="showcase">
<div class="container">
<h2><i><span class="highlight">Elb</span> & <span id="flow">Flow</span></i></h2>
<p id="top-qoute"><q><i>I will forgive the cashew stains,
The caked mud on your dress,
but your tangled hair speaks
a lot about your working class mother.
</q> <br>~ chibu</i></p>
</div>
</section>
<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="boxes">
<div class="container">
<div class="box">
<h3><span class="icon">♪</span><br>Poem</h3>
<p>Walking a dragonfly home,
my lost dream
a tin can
last bus -
waving at
a receding egret
</p>
</div>
<div class="box">
<h3><span class="icon">⋇</span> <br> Poetry</h3>
<p>Alone on the pavement, chewing kpomo, rocking her ragdoll. Migrating storks painted deep into a stone wall. Evening blues
two herons suck the sun in a pond.
</p>
</div>
<div class="box">
<h3><span class="icon">⊰</span> <br> Prose</h3>
<p>Adjusting to dawn, A flamingo unfolds its neck. Sea breeze teazing lilacs the angelus. He wached a yellow jacaranda pluck
fire from the sun.
</p>
</div>
</div>
</section>
<footer>
<p>Joyce-O <span id="copyright">copyright © 2018</span></p>
</footer>
</body>
</html>