-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitles.html
75 lines (66 loc) · 1.71 KB
/
titles.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
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
<html>
<head>
<link href="menustyle.css" type="text/css" rel="stylesheet">
<script type="text/javascript">
function openNav() {
document.getElementById("myNav").style.width = "270px";
document.getElementById("cls").style.display = "none";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
document.getElementById("cls").style.display = "block";
}
</script>
</head>
<style>
@font-face {
font-family: 'gfont';
src: url('res/gfont.ttf') format('truetype');
color: yellow;
}
body {
font-size: 50px;
margin-bottom: 0px;
margin-top: auto;
font-family: gfont, Verdana, sans-serif;
background-image: url(res/background.jpg);
background-attachment: scroll;
background-size: cover;
color: yellow;
}
marquee {
margin: right
}
</style>
<body align="center">
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()" style="left:210px">×</a>
<div class="overlay-content"><br>
<ul>
<li> <a href="index.html" style="text-decoration:none; font-size:40px;">
<-INDIETRO< /a>
</li>
</ul>
</div>
</div>
<div class="header">
<div id="cls" class="container">
<div onclick="openNav()" id="cls">
<div class="icona"></div>
<div class="icona"></div>
<div class="icona"></div>
</div>
</div>
</div>
<marquee loop="-1" scrollamount="5" scrolldelay="20" direction="up" height="100%" width="60%" align="center">
<i>
GDS2K19<br><br>
PROGETTO REALTA' AUMENTATA:<br><br>
GIACOMO DETOMASO<br><br>
MICHELANGELO DE PASCALE<br><br>
GIANLUIGI PALMISANO<br><br>
</i><br><br>
<img src="res/logo19.png" alt="ERROR" id="logo" style="border-radius:30px">
</marquee>
</body>
</html>