-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (62 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
65 lines (62 loc) · 2.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/103ed24470.js" crossorigin="anonymous"></script>
<title>Responsive Footer</title>
</head>
<body>
<footer>
<div class="container">
<div class="col-1">
<img src="/logo.png" alt="">
<p>Follow my instagram channel named mubashar_dev to see more of such projects and other posts. Also
Like and share these posts.Also follow me on Github and Linkedin. I hope you will like my content.
</p>
</div>
<div class="col-2">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Categories</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
<div class="col-3">
<h3>Services</h3>
<ul>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">JavaScript</a></li>
<li><a href="#">React</a></li>
<li><a href="#">Python</a></li>
<li><a href="#">C++</a></li>
</ul>
</div>
<div class="col-4">
<h3>Newsletter</h3>
<form>
<i class="far fa-envelope"></i>
<input type="email" placeholder="Enter your email" required>
<button><i class="fas fa-arrow-right"></i></button>
</form>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="footer-2">
<p>© 2021 | Made with ❤️ by Mubashar Dev. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>