-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (100 loc) · 4.88 KB
/
Copy pathindex.html
File metadata and controls
116 lines (100 loc) · 4.88 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<meta name="theme-color" content="#3F51B5">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="src/style.css" rel="stylesheet">
<link href="src/hamburguer.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js" integrity="sha384-a5N7Y/aK3qNeh15eJKGWxsqtnX/wWdSZSKp+81YjTmS15nvnvxKHuzaWwXHDli+4" crossorigin="anonymous"></script>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="topnav" id="myTopnav">
<a class="active" id="link">halogenOS</a>
<a href="team.html">The Team</a>
<a href="download.html">Download</a>
<a href="sources.html">Sources</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<div class="content" id="firstContent">
<p id="firstText">Android, Reimagined.</p>
<img src="src/halo1.png" id="firstImage">
</div>
<div id="secondContent" style="background-color: #ECEFF1;">
<div class="modal-body row">
<div class="col-md-6">
<img src="src/wall1.png" id=secondImage>
</div>
<div class="col-md-6">
<p class="textColums">AOSP isn't fast enough</p>
<p class="subText">Feel like you take a rocket out of your pocket.</p>
<p class="subText">Great performance. Great battery life. Great stability.</p>
<p class="subText"> All crafted into one amazing package.</p>
</div>
</div>
</div>
<div id="thirdContent">
<div class="modal-body row">
<div class="col-md-6">
<p class="textColums">We <span class="heart">♥</span> Substratum</p>
<p class="subText">An advanced theme manager working with Sony's OMS and Google's Dynamic Overlays</p>
</div>
<div class="col-md-6">
<a href="https://github.com/substratum" style="color:white;" target="_blank">
<img src="src/subs1.png" id=secondImage>
</a>
</div>
</div>
</div>
<footer class="page-footer" style="background-color: #607D8B">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Marie 4 president!!</h5>
<p class="grey-text text-lighten-4">This page is optimized for Tesla Model S display</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Telegram Links</h5>
<ul>
<li><a class="grey-text text-lighten-3" href="https://t.me/halogenos">Best Community Group Ever!</a></li>
<li><a class="grey-text text-lighten-3" href="https://t.me/halogenOSOT">Go OT or GTFO</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2018 halogenOS
</div>
</div>
</footer>
</body>
<script type="text/javascript">
$('#link').click(function() {
$("html, body").animate({
scrollTop: 0
}, 800);
return false;
});
$(".button-collapse").sideNav();
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</html>