-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrands.html
More file actions
95 lines (78 loc) · 3.2 KB
/
brands.html
File metadata and controls
95 lines (78 loc) · 3.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-square-buttons.min.css" />
</head>
<body>
<!-- Start your project here-->
<style>
.btn-square-social {
width: 70px !important;
max-width: 100% !important;
max-height: 100% !important;
height: 70px !important;
text-align: center;
padding: 0px;
font-size: 15px;
}
</style>
<!-- Facebook -->
<a class="btn btn-primary" style="background-color: #3b5998;" href="#!" role="button"><i
class="fab fa-facebook-f"></i></a>
<!-- Twitter -->
<a class="btn btn-primary" style="background-color: #55acee;" href="#!" role="button"><i
class="fab fa-twitter"></i></a>
<!-- Google -->
<a class="btn btn-primary" style="background-color: #dd4b39;" href="#!" role="button"><i
class="fab fa-google"></i></a>
<!-- Instagram -->
<a class="btn btn-primary" style="background-color: #ac2bac;" href="#!" role="button"><i
class="fab fa-instagram"></i></a>
<!-- Linkedin -->
<a class="btn btn-primary" style="background-color: #0082ca;" href="#!" role="button"><i
class="fab fa-linkedin-in"></i></a>
<!-- Pinterest -->
<a class="btn btn-primary" style="background-color: #c61118;" href="#!" role="button"><i
class="fab fa-pinterest"></i></a>
<!-- Vkontakte -->
<a class="btn btn-primary" style="background-color: #4c75a3;" href="#!" role="button"><i
class="fab fa-vk"></i></a>
<!-- Stack overflow -->
<a class="btn btn-primary" style="background-color: #ffac44;" href="#!" role="button"><i
class="fab fa-stack-overflow"></i></a>
<!-- Youtube -->
<a class="btn btn-primary" style="background-color: #ed302f;" href="#!" role="button"><i
class="fab fa-youtube"></i></a>
<!-- Slack -->
<a class="btn btn-primary" style="background-color: #481449;" href="#!" role="button"><i
class="fab fa-slack-hash"></i></a>
<!-- Github -->
<a class="btn btn-primary" style="background-color: #333333;" href="#!" role="button"><i
class="fab fa-github"></i></a>
<!-- Dribbble -->
<a class="btn btn-primary" style="background-color: #ec4a89;" href="#!" role="button"><i
class="fab fa-dribbble"></i></a>
<!-- Reddit -->
<a class="btn btn-primary" style="background-color: #ff4500;" href="#!" role="button"><i
class="fab fa-reddit-alien"></i></a>
<!-- Whatsapp -->
<a class="btn btn-primary" style="background-color: #25d366;" href="#!" role="button"><i
class="fab fa-whatsapp"></i></a>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>