-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathicon tab.html
More file actions
49 lines (31 loc) · 736 Bytes
/
icon tab.html
File metadata and controls
49 lines (31 loc) · 736 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.css">
<style>
@import url('https://fonts.googleapis.com/css?family=Saira+Stencil+One&display=swap');
.bg{
z-index: -1;
position:absolute;
top:0;
left:0;
height:100%;
width:100%;
opacity:1;
}
#html-bg{
background-color:#0A4A8A;
}
</style>
</head>
<body>
<h1>Tabs with font-awesome icon</h1>
<ul class="tabs">
<li class="tab">
<input class="radioClass" type="radio" name="tabs" checked id="tab1" />
<label for="tab1"><i class='fab fa-html5'></i><p>HTML</p></label>
<div class="bg" id="html-bg"></div>
</li>
</ul>
</body>
</html>