-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
executable file
·94 lines (77 loc) · 3.5 KB
/
about.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>efekty-dzwiekowe.pl</title>
<script src='https://www.google.com/recaptcha/api.js'></script>
<meta name="description" content="Opis strony" />
<meta name="keywords" content="słowa, kluczowe" />
<meta http-equiv="X-UA-Compatibile" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<script src="jquery-1.12.2.min.js"></script>
<script type="text/javascript">
var slide_number = Math.floor(Math.random()*3)+1;
function hide()
{
$("#slide_show").fadeOut(500);
}
function change_slide()
{
slide_number++;
if(slide_number>3) slide_number=1;
var slide = "<img style=\"width: 404px; height: 398px;\" src=\"slide_show/slide" + slide_number + ".jpg\" />"
document.getElementById("slide_show").innerHTML = slide;
$("#slide_show").fadeIn(800);
setTimeout("change_slide()",5000);
setTimeout("hide()",4200);
}
</script>
</head>
<body onload="change_slide()">
<div id="wrapper">
<div id="header">
<div id="logo">
<a href="index.php"><img src="img/logo.png" width="800" height="170"/></a>
</div>
<a href="index.php">
<div id=return>
<div style="padding-top: 55px;">
POWRÓT DO STRONY GŁÓWNEJ
</div>
</div>
</a>
</div>
<div id="content">
<div id=sign_up_form style="text-align: justify; padding: 30px; padding-bottom: 0px; padding-top:20px; width: 740px;">
Strona została wykonana przez Wojciecha Musiała w ramach studiów Inżynieria Akustyczna na Akademii Górniczo - Hutniczej w Krakowie. Wykorzystano bazę efektów dźwiękowych, udostępnionych przez promotora pracy - Dr inż. Bartosza Ziółko. Część efektów została wykonana również przez samego autora powyższej strony.
<br />
<a href="rules.php" target="blank">
<div class="user_id_sound" style="display: inline-block;">REGULAMIN</div>
</a>
<a href="http://www.agh.edu.pl/" target="blank" style="margin-left: 90px; display: inline-block;">
<div class="img_agh"><img src="img/agh.bmp" /></div>
</a>
<a href="http://www.dsp.agh.edu.pl/" target="blank" style="margin-left: 40px; display: inline-block;">
<div class="img_agh"><img src="img/dsp.jpg" width="244" height="244" /></div>
</a>
</div>
<div id="slide_show" style="margin-top: 10px;">
</div>
</div>
<div id="footer">
<div id="footer_divs">
<div id="text_footer">
efekty-dzwiekowe.pl © 2017 Strona została wykonana przez Wojciecha Musiała w ramach studiów Inżynieria Akustyczna
</div>
<div id="agh_footer">
<a href="http://www.agh.edu.pl/" target="blank">
<img src="img/logo_agh.png" width="16" height="32"/>
</a>
</div>
</div>
<div style="clear: both"></div>
</div>
</div>
</body>
</html>