-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.21 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
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page Title</title>
<meta name="author" content="Author Name">
<meta name="description" content="Page Description">
<meta name="keywords" content="HTML, CSS, JavaScript">
<!--
<meta name="robots" content="index"/> → allow search engine to index the page
or
<meta name="robots" content="noindex"/> → prevent search engine to index the page
<meta name="robots" content="follow"/> → allow search engine to follow links on the page
or
<meta name="robots" content="nofollow"/> → prevent search engine to follow links on the page
<meta http-equiv="cache-control" content="no-cache"/> → prevent caching of the page
or
<meta http-equiv="expires" content="Cache timout in seconds"/> → set cache timeout
-->
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Hello, world!</h1>
<p>Content goes here.</p>
</div>
<script src="/assets/js/bootstrap.bundle.min.js"></script>
</body>
</html>