-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
106 lines (106 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/index.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,500i,700|Playfair+Display:400,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/2162da8111.js" crossorigin="anonymous"></script>
<title>Colours of Tokyo</title>
</head>
<body>
<div id="grid-container">
<nav>
<div id="nav-flex-title">
<div id="title">Colours of Tokyo</div>
</div>
<ul id="nav-flex-menu">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog-post.html">Blog</a>
</li>
</ul>
</nav>
<section id="top-post">
<div class="text-gradient">
<a href="blog-post.html" alt="Pastel Cherry Blossoms" class="link">
<h4>Tokyo's Neon Signs</h4>
<p class="post-info"><em>Keiko Nakamura | 2019/07/13</em></p>
</a>
<p>
I love wandering through the streets of Tokyo, finding new places popping up at every corner. The city is constantly reinventing itself which was one of the reason I came back to my home city after many years abroad. When asked about my experience [...]
</p>
<a href="blog-post.html" alt="Button Read More">
<div class="btn btn-primary">Read more
</div>
</a>
</div>
</section>
<section class="post" id="post-1">
<a href="#" alt="Tokyo's Backstreets" class="link">
<div class="text-gradient">
<h4>Tokyo's Backstreets</h4>
<p class="post-info"><em>Robert Schmidt | 2019/03/20</em></p>
</div>
</a>
</section>
<section class="post" id="post-2">
<a href="#" alt="Pastel Cherry Blossoms" class="link">
<div class="text-gradient">
<h4>Pastel Cherry Blossoms</h4>
<p class="post-info"><em>Miyuki Kitano | 2019/05/27</em></p>
</div>
</a>
</section>
<section class="post" id="post-3">
<a href="#" alt="Best Sunset Spots" class="link">
<div class="text-gradient">
<h4>Best Sunset Spots</h4>
<p class="post-info"><em>Kevin Singh | 2019/01/05</em></p>
</div>
</a>
</section>
<section class="post" id="post-4">
<a href="#" alt="Commercial Districts" class="link">
<div class="text-gradient">
<h4>Commercial Districts</h4>
<p class="post-info"><em>Andy Swimmer | 2019/03/10</em></p>
</div>
</a>
</section>
<section class="post" id="post-5">
<a href="#" alt="Tokyo At Night" class="link">
<div class="text-gradient">
<h4>Tokyo At Night</h4>
<p class="post-info"><em>Yuki Tamura | 2019/03/09</em></p>
</div>
</a>
</section>
<section id="newsletter">
<form action="#">
<h5>Subscribe to our Newsletter</h5>
<div class="newsletter-container">
<div class="newsletter-element">
<input type="text" placeholder="Name" name="name" required>
</div>
<div class="newsletter-element">
<input type="text" placeholder="Email address" name="mail" required>
</div>
<div class="newsletter-element">
<input type="submit" value="Subscribe">
</div>
</div> <!-- newletter container -->
</form>
</section> <!-- newsletter -->
<footer>
<em>Design by Michelle Liebheit, 2019.</em>
<a href="https://www.facebook.com/"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com/"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/"><i class="fab fa-linkedin-in"></i></a>
</footer>
</div> <!-- grid container -->
</body>
</html>