-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (26 loc) · 813 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Excuse generator</title>
<meta charset="UTF-8">
<meta name="title" content="Título de la WEB">
<meta name="description" content="Descripción de la WEB">
<link href="styles/styles.css" rel="stylesheet" type="text/css"/>
</head>
<header>
<div id="header_container">
<h1>What will be your excuse today?</h1>
</div>
</header>
<body>
<div id="container">
<div id="text">
<h3 id="Excuse"></h3>
</div>
<div id="bottom">
<button onclick="Excuse_generator()">Excuse</button>
</div>
</div>
<script src="js/Excuse_generator.js"></script>
</body>
</html>