-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (113 loc) · 6.08 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
123
124
125
126
127
128
129
130
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script defer src="https://use.fontawesome.com/releases/v5.0.4/js/all.js"></script>
<title>Monument Landing Page</title>
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Raleway:600" rel="stylesheet">
</head>
<body>
<header>
<nav>
<a href="#">About</a>
<a href="#">Gallery</a>
<a href="blog.html">Blog</a>
<a href="#">Contact</a>
</nav>
<a href="#" id="hamburger"><i class="fa fa-bars" aria-hidden="true"></i></a>
<h1>Monument</h1>
<h2>a lifestyle magazine</h2>
</header>
<main>
<!-- START OF ARTICLE -->
<h3>From the archieve</h3>
<div class="article">
<article class="article1">
<img src="./images/gallery_6.jpg" alt="article photo">
<h4>Issue Twenty - the southwest</h4>
<p>simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="#">read more</a>
</article>
<article class="article2">
<img src="./images/article_2.jpg" alt="article photo">
<h4>Issue Nineteen - camping</h4>
<p>simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="#">read more</a>
</article>
<article class="article3">
<img src="./images/article_3.jpg" alt="article photo">
<h4>Issue eighteen- food</h4>
<p>simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<a href="#">read more</a>
</article>
</div>
<!-- END OF ARTICLE -->
<!-- ABOUT THE MAGAZINE -->
<div class="magazine">
<H3>about the magazine</H3>
<h4>a lifestyle magazine crafted with love</h4>
<p>simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
</div>
<!-- END OF MAGAZINE -->
<h3>Issue Twenty</h3>
<h4>a visual guide to the southwest</h4>
<div class="gallery">
<!-- <section class="imggroup1"> -->
<img src="./images/gallery_1.jpg" alt="gallery photo">
<img src="./images/gallery_3.jpg" alt="gallery photo">
<!-- </section> -->
<!-- <section class="imggroup2"> -->
<img src="./images/gallery_4.jpg" alt="gallery photo">
<img src="./images/gallery_2.jpg" alt="gallery photo">
<!-- </section> -->
<!-- <section class="imggroup3"> -->
<img src="./images/gallery_5.jpg" alt="gallery photo">
<img src="./images/gallery_6.jpg" alt="gallery photo">
<!-- </section> -->
</div>
<!-- FORM STARTS HERE -->
<h3>Get in touch</h3>
<form class="leaveComment">
<label for="contactForm"> <input type="hidden" name="csrf">
<div class="nameEmail">
<!-- <div class="forValidate"> -->
<input type="name" name="contactForm" placeholder="name">
<p class="inputField"></p>
<!-- </div>
<div class="forValidate"> -->
<input type="email" name="contactForm" placeholder="email">
<p class="inputField"></p>
<!-- </div> -->
<!-- <div class="forValidate"> -->
<input type="subject" name="contactForm" placeholder="subject">
<p class="inputField"></p>
<!-- </div> -->
</div>
<!-- <div class="forValidate"> -->
<textarea name="contactForm" placeholder="message"></textarea>
<p class="inputField"></p>
<!-- </div> -->
<input type="submit" id="formbutton" name="contactForm" value="submit">
</label>
</form>
<!-- FORM ENDS HERE -->
</main>
<footer>
<div class="socialMedia">
<a href="#"><i class="fab fa-facebook fa-3x"></i></a>
<a href="#"><i class="fab fa-instagram fa-3x"></i></a>
<a href="#"><i class="fab fa-twitter-square fa-3x"></i></a>
</div>
<form>
<input type="email" name="EMAIL" value="Your Email Address">
<input type="submit" id="submitButton" value="Subscribe">
</form>
<p id="copyright">© Katie So</p>
</footer>
<script type="text/javascript" src="js/jquery-1.7.1.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>