-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
152 lines (139 loc) · 4.91 KB
/
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/b83bb14ef8.js"
crossorigin="anonymous"
></script>
<!-- font-awasome -->
<title>footer</title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="container-fluid footer-fluid">
<div class="container footer">
<div class="row">
<div class="col-lg-12 text-center mt-3">
<p class="pb-3 h1">Follow Me</p>
<div class="footer-social-media-icons">
<a
href="https://www.linkedin.com/in/chamikasahan/"
target="_blank"
title="linkedin"
><i class="fa-brands fa-linkedin fa-2xl"></i
></a>
<a
href="https://github.com/chamikasahan"
target="_blank"
title="github"
>
<i class="fa-brands fa-github fa-2xl"></i
></a>
<a
href=" https://wa.me/+94761964862"
target="_blank"
title="whatsapp"
><i class="fa-brands fa-whatsapp fa-2xl"></i
></a>
<a
href="https://web.facebook.com/chamikasahan.samarakoon"
target="_blank"
title="facebook"
><i class="fa-brands fa-facebook fa-2xl"></i
></a>
<a
href="https://www.instagram.com/chamikasahan.samarakoon/"
target="_blank"
title="Instagram"
><i class="fa-brands fa-instagram fa-2xl"></i
></a>
</div>
</div>
</div>
<!-- end of row -->
<div class="row">
<div class="col-lg-6 mt-5">
<a
class="navbar-brand gradient-color"
href="index.html"
style="font-size: 1.5rem"
><span class="logo-name">C</span>hamika
<span class="logo-name">S</span>ahan</a
>
<div class="footer-nav">
<ul class="navbar-nav me-auto mt-3 mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">about</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blogs.html">Blogs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">contact</a>
</li>
</ul>
</div>
</div>
<!-- end of col -->
<div class="col-lg-6 mt-5">
<p class="h2">Contact Details</p>
<div class="footer-contact">
<ul
class="mt-3"
style="
list-style-type: none;
font-size: 1.3rem;
font-weight: 600;
"
>
<li><i class="fa-solid fa-house"></i> Kandy, Sri lanka</li>
<li><i class="fa-solid fa-phone"></i> +94 761 964 862</li>
<li id="mail-text">
<i class="fa-solid fa-envelope"></i>
sahannimesha2019@gmail.com
</li>
</ul>
</div>
</div>
<!-- end of col -->
</div>
<!-- end of row -->
<hr
style="border: none; height: 3px; background-color: rgb(25, 0, 255)"
/>
<div class="div pb-3 text-center">
<h5>
© 2024 Chamika sahan. All rights reserved. Created by Chamika
sahan.
</h5>
</div>
</div>
<!-- end of container -->
</div>
<!-- end of container fluid -->
<script src="js/bootstrap.bundle.js"></script>
</body>
</html>