"Elegant Beautiful Footer"
Bootstrap 4.1.1 Snippet by antenagames.com

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<title>AntenaGames | Fun Mobile Games</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Indie game studio, Mobile games">
<meta name="author" content="A.K.">
<link rel="stylesheet" href="bootstrap-4/css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/jquery.min.js"></script>
<!--
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
-->
<link rel="stylesheet" href="fontawesome-free-5.8.2/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
/*********************************************************
GENERAL
*********************************************************/
* {
font-family: 'Mali', cursive;
/* font-family: 'Roboto', sans-serif; */
}
a:hover,
a:focus {
text-decoration: none;
}
h2 {
text-transform: uppercase;
text-align: center;
font-weight: 700;
font-size: 40px;
color: #22aaee;
}
h3 {
text-align: center;
font-weight: 700;
color: #55aaee;
}
p {
color: #444;
}
hr {
width: 10%;
height: 5px;
background-color: yellow;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
$(document).ready(function(){
//Check to see if the window is top if not then display button
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.to-top').fadeIn();
} else {
$('.to-top').fadeOut();
}
});
//Click event to scroll to top
$('.to-top').click(function(){
$('html, body').animate({scrollTop : 0},800);
return false;
});
});
/***** Bootstrap JS Scrollspy *****/
$(document).ready(function(){
$('body').scrollspy({target: ".navbar", offset: 50});
});
/***** Navbar smaller scroll *****/
$(document).ready(function(){
var nav = $('.navbar'),
doc = $(document),
win = $(window);
win.scroll(function() {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

Beautiful Elagant Footer.

antgms (12) - 5 years ago - Reply 1