-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (143 loc) · 4.29 KB
/
index.html
File metadata and controls
150 lines (143 loc) · 4.29 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML Video Generator</title>
<link rel="icon" type="image/png" href="https://server21.github.io/PCGames/icon.png">
<link rel="stylesheet" href="css/estilos.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.dataTables.min.js"></script>
<style>
body {
background-image: url('https://www.skidrowreloaded.com/wp-content/uploads/2018/06/backgroundpic.jpg');
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
padding: 20px;
}
.header-top {
background-color: #f1f1f1;
padding: 10px;
}
.navegacion input[type="search"] {
padding: 8px;
width: 300px;
font-size: 16px;
}
.search {
margin-top: 20px;
}
.search-table {
width: 100%;
margin: 0 auto;
border-collapse: collapse;
}
.search-table td {
padding: 8px;
border: 1px solid #ddd;
}
.btn-group {
margin: 20px 0;
}
.btn-group button {
background-color: #4CAF50;
border: 1px solid green;
color: white;
font: 18px Arial, Helvetica, sans-serif;
padding: 10px 24px;
cursor: pointer;
width: 250px;
margin: 5px;
}
.btn-group button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="header-top">
<div class="navegacion">
<input type="search" placeholder="Cerca . . ." id="inputBusqueda">
</div>
</div>
<div class="search" id="search">
<table class="search-table" id="searchTable">
<thead>
<tr>
<td>Link Utili</td>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://www.google.com/">Porco dio</a></td>
</tr>
<tr>
<td><a href="https://is.gd/alldlc">The Sims 4 Tutti i Dlc Gratis</a></td>
</tr>
<tr>
<td><a href="#">Servicios</a></td>
</tr>
<tr>
<td><a href="#">Contacto</a></td>
</tr>
<tr>
<td><a href="#">Curso Html</a></td>
</tr>
<!-- Nuovo link aggiunto -->
<tr>
<td><a href="Nes/Super_Mario_Bros.html">Super Mario Bros</a></td>
</tr>
</tbody>
</table>
</div>
<h1 style="font-size:50px; margin-top:20px;">Video Test</h1>
</header>
<video preload="auto" width="1280" height="720" controls autoplay>
<source src="https://www10.zippyshare.com/d/iUhyVugg/28163/Comprare%20Gioco.mp4" type="video/mp4">
Il tuo browser non supporta il tag video.
</video>
<div class="btn-group">
<form method="get" action="https://pcgamesita.online/">
<button type="submit">SCARICA</button>
</form>
<form method="get" action="URL_PAGINA_WEB" onsubmit="openRandomSite(); return false;">
<button type="submit">Random Tutorial</button>
</form>
</div>
<hr>
<script src="js/buscador.js"></script>
<script>
// Disabilita il menu contestuale (tasto destro del mouse)
document.oncontextmenu = function() { return false; };
// Blocca alcune scorciatoie da tastiera
document.onkeydown = function(e) {
if (e.keyCode === 123 ||
(e.ctrlKey && e.shiftKey && (e.keyCode === 'I'.charCodeAt(0) ||
e.keyCode === 'C'.charCodeAt(0) ||
e.keyCode === 'J'.charCodeAt(0))) ||
(e.ctrlKey && e.keyCode === 'U'.charCodeAt(0))) {
return false;
}
};
// Funzione per aprire un sito casuale
function openRandomSite() {
var websites = [
"https://www.google.com/",
"https://www.youtube.com/channel/UCLXgMdFjMBgOWa_Wux58SBQ",
"https://www.skidrowreloaded.com/"
];
var website = websites[Math.floor(Math.random() * websites.length)];
window.open(website, "_blank");
}
</script>
<hr>
</div>
</body>
</html>