-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
71 lines (62 loc) · 2.28 KB
/
about.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>The Future Timeline</title>
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:400,800' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.11.3.min.js"></script>
<link rel="shortcut icon" type="image/png" href="img/time-favicon.png"/>
<script>
$(document).ready(function(e) { // do not delete this line
$('.container h3').hide();
$('.container h3').fadeIn(2000)
// This animates the navigation bar. If the user scrolls below 30px, ab animation is triggered.
$(window).scroll(function(e){
// here the bar is id'ed myBar
if ($(this).scrollTop() > 30) { // choose the value you want.
$('nav').stop().animate({"padding" : "10px"});
$('nav').css({"background" : "#000000"});
$('#logo').css({"font-size" : "18px"});
} else {
$('nav').stop().animate({"padding":"30px"});
$('nav').css({"background" : "transparent"});
$('#logo').css({"font-size" : "22px"});
}
});
}); // do not delete this line
</script>
</head>
<body>
<nav>
<div id="nav-wrapper">
<ul id="nav-norm" class="navbar">
<li class="logo"><a href="index.html">The Future Timeline</a></li>
<li class="scroll"><a href="index.html#timeline-one">Years V</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="quote.html">Quotes for the future</a></li>
</ul>
<ul id="ham-navbar" class="navbar">
<li class="logo"><a href="index.html">The Future Timeline</a></li>
<li class="scroll"><a href="index.html#timeline-one">Years</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="quote.html">Quotes</a></li>
</li>
</ul>
</nav>
<article>
<div id="about-page">
<h2> About </h2>
<p> This was a project created by Andrew Rasheed for his MAS241 Major Project. The project aims to provide a novel prediction of the future in an interactive, entertaining manner. For enquiries of any nature please proceed to the contact page. </p>
</div>
</article>
<footer>
<div id="footer-links">
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</footer>
</body>
</html>