-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
64 lines (52 loc) · 1.6 KB
/
about.html
File metadata and controls
64 lines (52 loc) · 1.6 KB
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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header id="main-header">
<div class="container">
<h1>About</h1>
</div>
</header>
<nav id="navbar">
<div class="container">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Fun</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Sources</a></li>
</ul>
</div>
</nav>
<section id="showcase">
<div class="container">
<h1> Welcome </h1>
</div>
</section>
<div class="container">
<section id="main">
<h2>About</h2>
<p> We are CODE SOCIETY, a new inovative club, where everyone can take part and have fun. Everybody, who is here, is special because he contrbutes towards the goal of the club. You can find friends from different classes from the college. You can learn a lot about codes and how to make different programs. If you want to take part and have the time of your life you can find us in room 111 in Abbot building every Thurstday.
</p>
<h3>Goal</h3>
<p>
Our goal is to create a cohesibe community to colaborate on projects together, explore new interests and support each other.
</p>
<h3>Motto</h3>
<p> Came for the <b>CODE</b>, stayed for the <b>SOCIETY</b>.
</p>
<br>
</section>
<aside id="sidebar">
</aside>
</div>
<footer id="main-footer">
<p>Copyright © 2018 Club Code Society</p>
</footer>
</body>
</html>