Skip to content

Commit fbfdc43

Browse files
committed
built website
iteration 1
0 parents  commit fbfdc43

File tree

3 files changed

+165
-0
lines changed

3 files changed

+165
-0
lines changed

index.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>FAUHS Coding Club</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<header>
11+
<h1>FAUHS Coding Club</h1>
12+
<nav>
13+
<ul>
14+
<li><a href="#">Home</a></li>
15+
<li><a href="#about">About</a></li>
16+
<li><a href="#events">Events</a></li>
17+
<li><a href="#">Contact</a></li>
18+
</ul>
19+
</nav>
20+
</header>
21+
<br>
22+
<div class="focus">
23+
<h1>proof of concept</h1>
24+
<h2>Apply Today</h2>
25+
<h3>September Somethingth I frogot</h3>
26+
</div>
27+
<br>
28+
<section id="about">
29+
<h2>About Us</h2>
30+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam at justo et orci scelerisque rutrum in vel orci. In et rutrum sapien. Proin in imperdiet nibh. Fusce at est ac arcu volutpat feugiat in at nulla. Etiam ultrices auctor orci, id venenatis neque feugiat a. Nulla dictum diam eget tempor ullamcorper. Vivamus commodo semper nunc, sit amet feugiat urna.
31+
32+
</p>
33+
<button>Learn More ></button>
34+
</section>
35+
<br>
36+
<br>
37+
<section id="events">
38+
<h2>Upcoming Events</h2>
39+
<ul id="event-list">
40+
<li>Phasellus blandit a nisl non accumsan. Donec quis faucibus arcu. In volutpat diam non neque malesuada, in faucibus mauris vulputate. Quisque in pharetra elit. Morbi vel dignissim leo. Phasellus ut tempus lacus, eu volutpat dui. Curabitur turpis orci, egestas vitae nisi nec, iaculis faucibus ante. Duis at dignissim risus, eget rutrum mi. </li>
41+
<li>Sed vitae nulla et magna suscipit sagittis vel in eros. Nullam eu enim turpis. Nam scelerisque eros sapien, non ornare nunc lobortis sed. Ut mattis ex efficitur, auctor ex ut, cursus nisl. Integer dignissim ut ex a interdum. Curabitur pretium purus a enim commodo, ut consequat massa vestibulum. Phasellus fringilla viverra fringilla. </li>
42+
</ul>
43+
</section>
44+
<br>
45+
<footer>
46+
<p>&copy; 2024 FAUHS Coding Club</p>
47+
</footer>
48+
49+
<script src="script.js"></script>
50+
</body>
51+
</html>

script.js

Whitespace-only changes.

style.css

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
/* style.css */
2+
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
3+
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
4+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
5+
6+
body {
7+
max-width: 1000px;
8+
margin: auto;
9+
padding: 10px;
10+
font-family: "Inter", sans-serif;
11+
}
12+
13+
h1 {
14+
font-family: "Source Code Pro", monospace;
15+
}
16+
17+
h2 {
18+
font-family: "Josefin Sans", sans-serif;
19+
margin-bottom: -10px;
20+
}
21+
22+
h3 {
23+
font-family: "Source Code Pro", monospace;
24+
25+
}
26+
27+
button {
28+
text-decoration: none;
29+
padding: 5px 15px;
30+
border-radius: 20px;
31+
border: 2px solid black;
32+
color: black;
33+
background-color: white;
34+
font-family: "Source Code Pro", monospace;
35+
font-weight: 600;
36+
}
37+
38+
button:hover {
39+
background-color: black;
40+
color: white;
41+
}
42+
43+
.focus {
44+
background-image: linear-gradient(rgba(0, 0, 0, 0.45),
45+
rgba(0, 0, 0, 0.5)), url(https://media.discordapp.net/attachments/1144092548902694980/1226015140172927067/image.png?ex=66233a93&is=6610c593&hm=4b9d28cffebbeac78ce5e07088d0c53764c6ebe9d4a965a49ccd2d8418dfb3fe&=&format=webp&quality=lossless&width=956&height=671);
46+
47+
border-radius: 10px;
48+
padding: 10%;
49+
color: white;
50+
51+
background-attachment: fixed;
52+
background-position: center;
53+
background-repeat: no-repeat;
54+
background-size: auto;
55+
background-position-y: top;
56+
background-size: inherit;
57+
}
58+
59+
section {
60+
padding-left: 5%;
61+
padding-right: 5%;
62+
}
63+
64+
header {
65+
overflow: hidden; /* Clear floats */
66+
border: 2px solid black;
67+
border-radius: 10px;
68+
margin-top: 0px;
69+
padding-left: 20px;
70+
padding-right: 20px;
71+
padding-top: 5px;
72+
}
73+
74+
header h1 {
75+
float: left; /* Title floats left */
76+
font-family: "Source Code Pro", monospace;
77+
font-size: 25px;
78+
font-weight: 650;
79+
margin-top: 10px;
80+
}
81+
82+
nav {
83+
float: right; /* Nav floats right */
84+
}
85+
86+
nav ul {
87+
list-style-type: none;
88+
margin-top: 15px;
89+
}
90+
91+
nav ul li {
92+
display: inline;
93+
margin-right: 10px;
94+
font-family: "Source Code Pro", monospace;
95+
font-weight: 600;
96+
}
97+
98+
nav ul li a {
99+
text-decoration: none;
100+
padding: 5px 15px;
101+
border-radius: 20px;
102+
border: 2px solid black;
103+
color: black;
104+
}
105+
106+
nav ul li a:hover {
107+
background-color: black;
108+
color: white;
109+
}
110+
111+
footer {
112+
text-align: center;
113+
font-family: "Source Code Pro", monospace;
114+
}

0 commit comments

Comments
 (0)