This repository was archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathproject_bba_website.html
48 lines (47 loc) · 2.41 KB
/
project_bba_website.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BBA - Bits and Bytes Association</title>
<link rel="icon" type="image/png" href="favicon.ico">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap-override.css">
<link rel="stylesheet" href="assets/fonts/material-icons.css">
<link rel="stylesheet" href="assets/css/user.css">
<link rel="stylesheet" href="assets/css/socialnavigation.css">
</head>
<body>
<img src="assets/img/main banner.png" style="width: 100%;" alt="">
<div w3-include-html="header.html"></div>
<div class="container post">
<div class="row">
<div class="col-md-4 post-title">
<h3>BBA Website</h3>
</div>
<div class="col-md-8 col-md-offset-0 post-body">
<p>
This website is maintained by volunteers from the BBA. The site is currently written in raw-HTML, with the goal of being accessible to anyone who is taking Web Development 1. This website is very early in it's development and we value your input! By helping with this project you will practice the following skills:
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>GitHub</li>
<li>Linux Server Administration</li>
</ul>
</p>
<p>
Additionally, anyone who makes a successful contribution will be featured on our <a href="contributors.html">Contributors</a> page! If you are interested in volunteering, please use the <a href="#" data-toggle="modal" data-target="#contactUs">Contact Us</a> page to let us know!
</p>
</div>
</div>
</div>
<div w3-include-html="./footer.html"></div>
<script src="http://www.w3schools.com/lib/w3data.js"></script>
<script>
w3IncludeHTML();
</script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>