-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.html
More file actions
89 lines (73 loc) · 2.37 KB
/
test.html
File metadata and controls
89 lines (73 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testing</title>
<!-- Bootstrap 5.3 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<!-- Estilos CSS generales -->
<link rel="stylesheet" href="styles/styles.css">
<!-- Estilos CSS index -->
<link rel="stylesheet" href="styles/test.css">
<!-- Iconos bootstrap -->
<!-- Example: <i class="bi-alarm"></i> -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css">
<!-- iconos font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css">
<!-- iconos Google Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div id="navbar"></div>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<p>Testing</p>
<div class="fab-container">
<div class="fab shadow">
<div class="fab-content">
<span class="material-icons">settings</span>
</div>
</div>
<div id="dark-mode" class="sub-button shadow">
<span class="material-icons">dark_mode</span>
</div>
<div id="light-mode" class="sub-button shadow">
<span class="material-icons">sunny</span>
</div>
</div>
<article></article>
<div id="footer"></div>
<!-- Script de index -->
<script src="scripts/test.js"></script>
<!-- Script para todos los archivos -->
<script src="scripts/scripts.js"></script>
<!-- Script Bootstrap 5.3 -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>