-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (77 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Footer - Responsive</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<footer>
<div class="footer-line"></div>
<div class="footer-wrapper">
<section class="footer-top">
<div class="footer-headline">
<h2>Subscribe to our newsletter</h2>
<p>Stay up to date with our news and articles</p>
</div>
<div class="footer-subscribe">
<input type="email" spellcheck="false" placeholder="Your Email" />
<button>Sign Up</button>
</div>
</section>
<div class="footer-columns">
<section class="footer-logo">
<h2>svg logo</h2>
</section>
<section>
<h3>Product</h3>
<ul>
<li><a href="#" title="API">link 1</a></li>
<li><a href="#" title="API">link 2</a></li>
<li><a href="#" title="API">link 3</a></li>
<!-- product links-->
</ul>
</section>
<section>
<h3>News</h3>
<ul>
<li><a href="#" title="API">link 1</a></li>
<li><a href="#" title="API">link 2</a></li>
<li><a href="#" title="API">link 3</a></li>
<!-- product links-->
</ul>
</section>
<section>
<h3>Resource</h3>
<ul>
<li><a href="#" title="API">link 1</a></li>
<li><a href="#" title="API">link 2</a></li>
<li><a href="#" title="API">link 3</a></li>
<!-- product links-->
</ul>
</section>
</div>
<div class="footer-bottom">
<div class="social-links">
<ul>
<li>
<a href="#" title="Instagram">
<img src="assets/instagram.svg" alt="Instagram" />
<!-- social links-->
</a>
</li>
</ul>
</div>
<small>
Atheros Intelligence Ltd.
<span id="year"></span>, All rights reserved
</small>
</div>
</div>
</footer>
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
</body>
</html>