-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
39 lines (37 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Code Club</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Concert+One&family=Montserrat&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<!--Layout container-->
<div id="Layout-container">
<!-- 1) nav bar -->
<nav>
<span style="font-size: 1.5em;">CodeClub</span>
<a href="about.html">About</a>
<a href="password.html">Members</a>
</nav>
<!-- 2) header -->
<div class="row"><!--header row-->
<div class="left-column">
<!--left header column-->
<h1 class="main-heading">Welcome to<br>Code Club!</h1>
</div><!--right header column-->
<div class="right-column" id="right-col-home"></div>
</div>
<!-- 3) Content-->
<div id="content">
<h2>Let's Code Together :)</h2>
<p>Code Club is all about friends coming together to build fun things using code.</p>
<p>We love to work on fun web development projects while we explore interesting technologies and find ways to collaborate together.</p>
<p>Anyone can apply to join and the coffee is free!</p>
<a href="about.html">Discover more...</a>
</div>
</div>
</body>
</html>