-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
58 lines (46 loc) · 2 KB
/
index2.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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>HOLA MUNDO</title>
<meta name="description" content="Prueba Hola Mundo">
<meta name="author" content="Basura">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme-color" content="#14171b">
<link rel="shortcut icon" href="assets/icons/favicon.png">
<link rel="manifest" href="manifest.json">
<!-- Add to home screen for Safari on iOS -->
<link rel="apple-touch-icon" href="assets/icons/ios-180x180.png">
<!-- <link rel="apple-touch-startup-image" href="assets/ios-startup/startup-640x1136.png" media="device-width: 375px">
<link rel="apple-touch-startup-image" href="assets/ios-startup/startup-1080x1920.png" media="device-width: 414px">
<link rel="apple-touch-startup-image" href="assets/ios-startup/startup-640x1136.png" media="(device-width: 320px) and (device-height: 568px)">
<link rel="apple-touch-startup-image" href="assets/ios-startup/startup-640x960.png" media="(device-width: 320px) and (device-height: 480px)">
-->
<meta name="apple-mobile-web-app-title" content="Hola Mundo
">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- <link rel="stylesheet" href="css/styles.css?v=1.0"> -->
</head>
<body>
Hola Mundo.
<br><br>
Modificado desde el Pc para subir el proyecto al git v7
<br><br>
Adaptado para IPhone
<!-- <script src="js/scripts.js"></script> -->
<script type="text/javascript">
// Set up service worker
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('service-worker.js', {scope: '.'});
}
// Easter Egg to get it full black
// Awesome for OLED screens
if (localStorage.getItem('isDeepBlack')) {
document.body.classList.add('deepblack')
}
</script>
</body>
</html>