-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.93 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
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="/css/default.css">
<link rel="stylesheet" href="/css/navbar.css">
<link rel="stylesheet" href="/css/gallery.css">
<link rel="stylesheet" href="/css/fonts.css" type="text/css" media="all" />
<title>Realme U1 | ROMs</title>
</head>
<body>
<div class="header">
<a href = "/" class="item">
<h1>realme U1</h1>
<h2>| Lucifer Communtiy</h2>
</a>
<div class="navbar">
<a href="" class="active">ROMS</a>
<a href="">KERNELS</a>
<a href="">RECOVERIES</a>
<a href="">MISC</a>
</div>
</div>
<div class="body">
<div class="item">
<div class="sub_item" style="background: #485563; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #29323c, #485563); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
">
<h1>Android Q</h1>
<h2>All the goodness of Q ROMs at one place!</h2>
<button class="button" onclick="document.location='/AndroidQ'">View ROMs</button>
</div>
<div class="sub_item" style="background: #6441A5; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2a0845, #6441A5); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #2a0845, #6441A5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
">
<h1>Android R</h1>
<h2>All the goodness of R ROMs at one place!</h2>
<button class="button" onclick="document.location='/AndroidR'">View ROMs</button>
</div>
</div>
<div class="slideshow">
<div class="mySlides"><img src="images/headers/pixel.png" style="width:100%"><button class="button">🔰 Download</button></div>
<div class="mySlides"><img src="images/headers/cherish.png" style="width:100%"><button class="button">🔰 Download</button></div>
<div class="mySlides"><img src="images/headers/corvusr.png" style="width:80%"><button class="button">🔰 Download</button></div>
</div>
</div>
<div id="copyright" class="container">
<p>
© Developed By <a href="https://www.instagram.com/jaanijunior_13">Shashwat</a>
</p>
</div>
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "flex";
setTimeout(carousel, 2000); // Change image every 2 seconds
}
</script>
</body></html>