-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
44 lines (43 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<title>HTML&JS</title>
<meta charset="UTF-8">
<meta name="description" content="Aqui estará um conjunto de páginas feitas em HTML e utilizando JavaScript puro.">
<meta name="keywords" content="HTML pages, Páginas HTML, JS pages, Páginas JS, Jogo da Bolinha, The Ball Game, JavaScript Animations, JavaScript Games, Animações JavaScript, Jogos JavaScript, html js comxa com">
<link rel="icon" href="resources/HTML5.png"/>
<style>
* {
text-align: center;
font-family: Arial, sans-serif;
}
body {
background-color: #d7d7d7;
}
h1 {
color: red;
}
.links {
font-weight: bold;
font-size: 20px;
}
a:visited {
color: blue;
}
</style><!--</body>-->
</head>
<body>
<h1 id="subtitle">Bem vindo a esta página!</h1>
<p id="description">Aqui haverá um espaço para páginas web... Esteja atento!</p>
<button id="reloadButton" onclick="location.reload(true);">Recarregar</button>
<select id="dropdownLanguage" style="margin-left: 160px">
<option value="pt">Português</option>
<option value="en">English</option>
</select>
<p class="links"><a id="Animation 1_html" href="Animation1.html">Animação 1</a></p>
<p class="links"><a id="Animation 2_html" href="Animation2.html">Animação 2</a></p>
<p class="links"><a id="Ball Game_html" href="TheBallGame.html">Jogo da Bolinha</a></p>
<p class="links"><a id="CapitalTycoon_html" href="CapitalTycoon.html">Capital Tycoon</a></p>
<script type="module" src="src/index/entrypoint.ts"></script>
</body>
</html>