-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (113 loc) · 3.51 KB
/
index.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700|Dosis:300,400,600" rel="stylesheet">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rel="icon" href="photos/logo.jpg">
<script src="script.js"></script>
<title> Ieering - Home </title>
</head>
<body>
<div class="logo">
<!-- <img src=""> -->
<h1> ieering </h1>
</div>
<div class="nav-bar">
<ul>
<li class="active"><a href="index.html">home</a></li>
<li class="regular"><a href="stories-main.html">stories</a></li>
<li class="regular"><a href="contact.html">contact</a></li>
</ul>
</div>
<div class="spacer"></div>
<section class="main align-center">
<div class="img-container">
<img src="photos/main/main.jpg">
</div>
<div class="text-center box">
<h1> Welcome to </h1>
<div class="uppercase word">
ieering
</div>
<h4> [pronounced eer-ing or earing] </h4>
<h5>
The home of simple stories paired with serene and beautiful photography
</h5>
</div>
</section>
<section class="content">
<div class="row">
<div class="box-large-2">
<a href="">
<div class="story-photo">
<div class="grow img-container">
<img class="subject" src="photos/main/img1.jpg">
</div>
</div>
<div class="subtitle">
<h4> name of story </h4>
<h5> date </h5>
</div>
</a>
</div>
<div class="box-large-2">
<a href="">
<div class="story-photo">
<div class="grow img-container">
<img class="subject" src="photos/main/img2.jpg">
</div>
</div>
<div class="subtitle">
<h4> name of story </h4>
<h5> date </h5>
</div>
</a>
</div>
</div>
<div class="row">
<div class="box-large-2">
<a href="">
<div class="story-photo">
<div class="grow img-container">
<img class="subject" src="photos/main/img3.jpg">
</div>
</div>
<div class="subtitle">
<h4> name of story </h4>
<h5> date </h5>
</div>
<a href="">
</div>
<div class="box-large-2">
<a href="">
<div class="story-photo">
<div class="grow img-container">
<img class="subject" src="photos/main/img4.jpg">
</div>
</div>
<div class="subtitle">
<h4> name of story </h4>
<h5> date </h5>
</div>
</a>
</div>
</div>
</section>
<div class="thin-section">
<div class="circle">
<img src="photos/profile-pic.jpg">
</div>
<div class="description">
<p>
I'm Yu Ying, the author of IEERING, I think (no matter how corny it sounds) that life
is composed of stories and valuable moments of little things you enjoy
</p>
</div>
</div>
<div class="thin-section">
<q> give an ear. I'll give you a story </q>
</div>
<section class="footer">
<h6> © copyright yuying liang </h6>
</section>
</body>
</html>