-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.69 KB
/
index.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
<!doctype html>
<html lang="en">
<!-- Html with English Language -->
<head>
<!-- Required meta tags -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#696969">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Ashish Kumar Bhoi">
<meta name="keywords" content="ashish bootstrap html5 css3 javascript">
<meta name="description" content="A static web page to show all my github work">
<!-- manifest file to be added -->
<link rel="manifest" href="manifest.json" />
<!-- Bootstrap Fontawesome and costom css files -->
<link rel="stylesheet" href="bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="@fortawesome/fontawesome-free/css/all.css">
<link rel="stylesheet" href="style.css">
<!--Title And icon -->
<title>Titler</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<!-->
Add all the requiredd elements hear
Title Header footer body
Everything Try not to change other parts
<!-->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap, then Fontawesome JS -->
<script src="jquery/dist/jquery.js"></script>
<script src="popper.js/dist/umd/popper.js"></script>
<script src="bootstrap/dist/js/bootstrap.js"></script>
<script defer src="@fortawesome/fontawesome-free/js/all.js"></script>
</body>
<!-- Service worker JS Scripts -->
<script src="service-worker.js"></script>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('service-worker.js')
}
</script>
</html>