-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
40 lines (39 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125622445-1"></script>
<script>
{
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)}
gtag('js', new Date());
gtag('config', 'UA-125622445-1');
}
</script>
<title>CHUNKED POC</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossOrigin="anonymous"/>
<style>
* {
text-align: center;
}
body {
width: 80%;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="jumbotron">
<h1 class="display-4">WELCOME TO MY POC</h1>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item list-group-item-primary">
<a href="/nonChunking" title="Navigate to Page with no chunking">Move to page without chunking</a>
</li>
<li class="list-group-item list-group-item-success">
<a href="/chunking" title="Navigate to Page chunking">Move to page with chunking</a>
</li>
</ul>
</body>
</html>