-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdon.html
More file actions
38 lines (34 loc) · 711 Bytes
/
don.html
File metadata and controls
38 lines (34 loc) · 711 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Aspituto</title>
<meta charset="utf-8">
</head>
<body>
<select name="choisir" onChange="location.href=''+this.options[this.selectedIndex].value+'.html';">
<option value="don">lien</option>
<option value="univers">ma passion</option>
<option value="relavite">einstein</option>
</select>
<h1>Accueil</h1>
<h2>Bienvenue sur Aspituto</h2>
<p>bonjour ce site est fait pour vous apprendre sur l'univers et l'informatique</p>
<style type="text/css">
select{
background:red;
}
body{
background:gray;
}
p{
color:white;
}
h1{
color:red;
}
h2{
color: yellow;
}
</style>
</body>
</html>