"Google anonymous browser"
Bootstrap 4.0.0 Snippet by MatheusCalixto

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="content">
<div class="icon"></div>
<span>
<h1 i18n-content="incognitoTabHeading"></h1>
<p>
<span i18n-content="incognitoTabDescription"></span>
</p>
<p>
<span i18n-content="incognitoTabWarning"></span>
</p>
</span>
<a class="learn-more-button" i18n-content="learnMore" i18n-values=".href:learnMoreLink"></a>
</div>
<script>var loadTimeData;
function LoadTimeData(){}
(function() {
'use strict';
LoadTimeData.prototype = {
set data(value) {
expect(!this.data_, 'Re-setting data.');
this.data_ = value;
},
createJsEvalContext: function() {
return new JsEvalContext(this.data_);
},
valueExists: function(id) {
return id in this.data_;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
@import url('https://fonts.googleapis.com/css?family=Roboto');
html {
direction: ltr;
}
body {
font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
font-size: 81.25%;
}
button {
font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
}
body {
-webkit-font-smoothing: antialiased;
font-size: 85%;
}
h1 {
font-size: 200%;
font-weight: 400;
margin-bottom: .77em;
margin-top: .88em;
opacity: .8;
}
p {
line-height: 1.5;
margin: .588em 0;
text-align: center;
}
a {
color: rgb(51, 103, 214);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: