-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
45 lines (45 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About - MCA Web Dev SIG</title>
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/style.css">
<script src="scripts/include.js"></script>
</head>
<body>
<!-- <h1>About the MCA Web Dev SIG</h1> -->
<header>
<div w3-include-html="header.html" include_content="About the MCA Web Dev SIG" left_link="Projects" left_href="projects.html" right_link="Home" right_href="index.html"></div>
</header>
<p>
The Web Development Special Interest Group (Web Dev SIG) is one of Mizzou Computing Association’s mini-clubs. We focus on web development, which involves building websites/web pages accessible through the Internet. No experience is necessary to participate!
</p>
<p>Come join us to learn about tech such as:</p>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Figma</li>
<li>Web frameworks</li>
<li>Static Site Generators</li>
</ul>
</p>
<footer>
<div>
<h4>MCA Web Dev SIG</h4>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="projects.html">Projects</a>
</div>
<div>
<!--
put discord logo here
-->
<h4>MCA Discord</h4>
</div>
</footer>
<script>
includeHTML();
</script>
</html>