-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
127 lines (126 loc) · 6.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Website description here" />
<meta name="keywords" content="website,keywords,here">
<meta name="viewport" content="initial-scale=1.0,width=device-width" />
<link href="https://fonts.googleapis.com/css?family=Nunito:700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=Open Sans" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<title>Website</title>
</head>
<body>
<div id="main-content">
<a name="home"></a>
<div id="header">
<div class="area">
<div id="logo">
<a href="#">
<img id="light-logo" style="display: inline;" alt="website logo" src="images/logo.png" />
<img id="dark-logo" style="display: none;" alt="website logo" src="images/logo-dark.png" />
</a>
</div>
<div id="navigation">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
<div id="responsive-icon" onclick="$('#responsive-menu').slideToggle();">
<a href="javascript:void(0);"><img id="mobile-image" src="images/menu.png" /></a>
</div>
</div>
</div>
<div id="responsive-menu">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
<div class="clear"></div>
<img class="bg" src="images/background.jpg" />
<div class="mainpage-display">
<h1 class="mainpage-heading">Heading text here</h1>
<p class="mainpage-p">Description text here</p>
<br />
<button class="filled-button">Sign up</button>
<button class="transparent-button">Learn more</button>
</div>
<img style="width: 100%; margin-top: 7em;" draggable="false" src="images/cover.png" /><a name="features"></a>
<div class="boxes-container" style="padding-top: 7em; margin-top: -0.32em;">
<h1 id="box-h1">Features</h1>
<div class="home-box">
<img src="images/content-placeholder.png" />
<h1>Section title here</h1>
<p>Section content here</p>
</div>
<div class="home-box">
<img src="images/content-placeholder.png" />
<h1>Section title here</h1>
<p>Section content here</p>
</div>
<div class="home-box">
<img src="images/content-placeholder.png" />
<h1>Section title here</h1>
<p>Section content here</p>
</div>
<div class="clear"></div>
</div>
<div class="boxes-container" id="quote-container">
<h1 id="ldq">“</h1>
<blockquote id="main-quote">Text here</blockquote>
<h1 id="rdq">”</h1>
<h1 id="quote-by" style="padding-left: 16px;">- Text here</h1>
<div class="clear"></div>
</div>
<a name="contact"></a>
<div id="contact-form-layout">
<h1 class="mainpage-heading left">Contact us</h1>
<input class="textbox" type="text" placeholder="Name" />
<input class="textbox" type="text" placeholder="Email" />
<textarea class="textfield" placeholder="Your message"></textarea>
<button id="submit" class="transparent-button">Submit</button>
</div>
</div>
<div id="footer">
<div class="wrapper">
<div class="footer-left" style="padding-left: 2em;">
<ul>
<li>📞 (phone number here)</li>
<li>✉️ (email here)</li>
<li>📍 (Address here)</li>
</ul>
</div>
<div class="footer-left">
<ul>
<li> <a style="display: inline;" href="#">About Us</a></li>
<li> <a style="display: inline;" href="#">Help</a></li>
<li> <a style="display: inline;" href="#">Privacy</a></li>
</ul>
</div>
<div class="clear-mob"></div>
<div class="footer-right">
<div style="padding-left: 1.5em;">
<div id="newsletter">
<p id="subscribe-text">Subscribe to our newsletter</p>
<input class="textbox" id="sub-email" style="display: inline-block;" type="text" placeholder="Your Email" />
<input class="filled-button" id="subscribe" onclick="subscribe();" type="button" value="Subscribe" />
<p id="newsletter-error"></p>
</div>
<div>
<a href="#" target="_blank"><img class="social-media-img" src="images/facebook.png" /></a>
<a href="#" target="_blank"><img class="social-media-img" src="images/instagram.png" /></a>
<span id="copyright"> © Copyright notice here</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>