-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.05 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lista de archivos</title>
<style>
body {
font-family: Arial, sans-serif;
}
ul {
list-style-type: none;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: blue;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Archivos disponibles</h1>
<ul>
<li><a href="Google-Form-Script-Generator-Example.txt" target="_blank">Google-Form-Script-Generator-Example.txt</a></li>
<li><a href="Google-Form-Script-Generator.txt" target="_blank">Google-Form-Script-Generator.txt</a></li>
<li><a href="FODA-Questionnaire-Prompt-Example.txt" target="_blank">FODA-Questionnaire-Prompt-Example.txt</a></li>
<li><a href="FODA-Questionnaire-Prompt.txt" target="_blank">FODA-Questionnaire-Prompt.txt</a></li>
<li><a href="analyzeFODAResponses.js" target="_blank">analyzeFODAResponses.js</a></li>
</ul>
</body>
</html>