-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
91 lines (74 loc) · 2.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,400,700" rel="stylesheet">
<link href="css/about.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
</head>
<!-- HEAD // Place SCRIPTS here!-->
<html>
<body>
<div class="container">
<nav id="navbar">
<a href="index.html"><img src="assets\images\SplitDollar.png" alt=""></a>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="#">Share</a>
<a href="#">Sign In</a>
</nav>
<div class="header">
<h1>Meet the Team!</h1>
<h2>We would like to present Tucker Wray and Daniel Viera!</h2>
</div>
<!-- Header Container -->
<div class="content-creator">
<div class="tucker create">
<div class="creator">
<h2>Meet Tuck!</h2>
<p> I'm learning to code because mama needs a new pair of solar panels. </p>
</div>
<div class="creatorpic">
<a href="https://github.com/jtwray" title="Tucker">
<img src="https://avatars3.githubusercontent.com/u/42871401?s=460&v=4" alt="">
</a>
</div>
</div>
<!-- About Tucker -->
<div class="daniel create">
<div class="creatorpic">
<a href="https://github.com/Dannyyzz" title="Daniel">
<img src="https://avatars3.githubusercontent.com/u/35716281?s=460&v=4" alt="">
</a>
</div>
<div class="creator">
<h2>Meet Dan!</h2>
<p> Geek with a school bus as a home. </p>
</div>
<!-- About Daniel-->
</div>
<!-- Creator Container -->
</div>
<!-- Whole Page Container-->
<footer>
<p>© 2019, Tucker Wray && Daniel Viera - WEBPT6</p>
</footer>
<script src="navbarr.js"></script>
<script>
window.onscroll = function() {
myFunction()
};
var navbar = document.getElementById("navbar");
var sticky = navbar.offsetTop;
function myFunction() {
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky")
} else {
navbar.classList.remove("sticky");
}
}
</script>
</body>
<!-- BODY Container -->
</html>
<!-- HTML Container -->