-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuser_footer.html
117 lines (106 loc) · 3.11 KB
/
user_footer.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
<style>
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
/* *{
margin: 0;
padding: 0;
box-sizing: border-box;
} */
#Userfooter_section{
font-family: 'Poppins', sans-serif;
display: flex;
padding: 2em;
justify-content: space-between;
background-color: whitesmoke;
}
#footerLogo > h1{
font-family: 'Pacifico', cursive;
color: #7f8685;
font-size: 30px;
margin : 0.5em 0;
}
/* user_second_div */
#user_second_div{
padding: 0 1em;
}
#user_second_div ul{
list-style: none;
list-style-type: none;
padding: 0 0.5em;
margin: 1em 0;
line-height: 2em;
}
#user_second_div ul a{
text-decoration: none;
color: #000;
}
#user_second_div ul a:hover{
text-decoration: underline;
color: #000;
}
/* third */
#user_icon_div{
margin:1em 0;
}
#user_icon_div img{
margin: 0.3em;
cursor: pointer;
}
/* four_div */
#four_div h3{
margin-bottom: 1em;
}
#four_div input,#four_div button{
padding: 15px;
border: none;
outline: none;
border-radius: 1em;
}
button{
margin-top: 30px;
color: #fff;
cursor: pointer;
background-color: #7f8685;
}
@media screen and (max-width: 425px) and (min-width:300px) {
#Userfooter_section{
flex-direction: column;
}
#Userfooter_section > div{
margin-top: 2em;
}
}
</style>
<footer>
<section id="Userfooter_section">
<div id="first_div">
<div id="footerLogo">
<h1>Travelo</h1>
</div>
<p>Discover your next holiday destination</p>
</div>
<div id="user_second_div">
<h3>Explore Travelo</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="destination.html">Destination</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="packages.html">Packages</a></li>
<li><a href="developersPage.html">Developer</a></li>
</ul>
</div>
<div id="third_div">
<h3>Connect with us</h3>
<div id="user_icon_div">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/2021_Facebook_icon.svg/2048px-2021_Facebook_icon.svg.png" width="40px" alt="">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/58/Instagram-Icon.png/1200px-Instagram-Icon.png" alt="" width="40px">
<img src="https://cdn4.iconfinder.com/data/icons/social-media-icons-the-circle-set/48/twitter_circle-512.png" alt="" width="40px">
</div>
</div>
<div id="four_div">
<h3>Newsletter</h3>
<input type="email" name="email" placeholder="Your Email"> <br>
<button>Subscribe</button>
</div>
</section>
</footer>
<script></script>