This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webDevelopment.html
139 lines (113 loc) · 6.02 KB
/
webDevelopment.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE HTML>
<html>
<head>
<title>Web Development</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Custom ACM CSS -->
<link href='css/ACM_CSS/custom.css' rel='stylesheet'>
<!-- BootStrap template -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Bootstrap's JavaScript -->
<script src="js/bootstrap_js/bootstrap.min.js"></script>
</head>
<body>
<!-- Navbar -->
<div align="center">
<div style='width: 72%;'>
<nav class="navbar navbar-inverse">
<!-- ACM Logo -->
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1"
aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img src="images/acm_logo.jpg" alt="ACM Logo"></a>
</div>
<!-- Committees Dropdown -->
<div class="collapse navbar-collapse"
id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle"
data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
Comittees <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="webDevelopment.html">Web Development</a></li>
<li><a href="androidDevelopment.html">Android Development</a></li>
<li><a href="animationTeam.html">Animation Team</a></li>
<li><a href="AIteam.html">AI Team</a></li>
</ul>
</li>
<!-- Events link -->
<li><a href="Rowan-ACM-Calendar.html">Events</a></li>
<!-- Board Members link -->
<li><a href="boardMembers.html">Board Members</a></li>
<!-- Contact Us link -->
<li><a href="emailForm.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<div align="center">
<div class="border" style="width: 70%;">
<br>
<h1>Web Development Team</h1>
<br>
<div class="container" align="left">
<div class="row">
<div class="col-xs-9 col-sm-9 col-md-9 col-lg-9">
<p>The ACM Web Development Team is a hard working and growing team in the ACM.
Our goal is to teach the fundumentals of Web Development and that the Web
Development is more than just building websites. In today's world almost everythng you use
is some form of web application. Understanding Web Development is extremely important because
it is the foundation of todays tech industry. While our team does build web sites on the side
as favors to other clubs, we also strive to build powerful web applications that interact with
backends and databases in order to help better prepare ourselves for the real world and better
educate oursleves in an area of the field of computer science.</p>
</div>
</div>
</div>
<br>
</div>
</div>
<br>
<!-- Footer -->
<div align="center">
<div style="width: 72%">
<nav class="navbar navbar-inverse">
<div>
<a href="#">About</a>
|
<a href="http://www.acm.org/">ACM Main Site</a>
</div>
<div>
<span>
<a href="https://www.facebook.com/rowanacm">
<img src="images/facebook_logo/FB-f-Logo__blue_29.png" alt="facebook"/>
</a>
</span>
<span>
<a href='https://github.com/RowanACM'>
<img src='images/github_logo/GitHub-Mark-Light-32px.png' alt='github'/>
</a>
</span>
</div>
<p>ACM Website developed by the ACM Web Development Team 2015</p>
</nav>
</div>
</div>
</body>
</html>