-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanced.html
96 lines (96 loc) · 2.82 KB
/
advanced.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Dev Personal Website</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<nav>
<img
src="https://avatars.githubusercontent.com/u/8184802?s=200&v=4"
alt="LWD Logo"
height="50"
width="50"
/>
<h1>Web Development Club</h1>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</nav>
<header>
<h2>What is Web Dev Club?</h2>
<p>
Lynbrook's Web Development club teaches Web Development
<strong>from the ground up.</strong> Starting from 0 experience all the
way to <u>modern front-end projects with popular frameworks.</u> Oh, and
did I mention we make projects. <em>Lots of them.</em>
</p>
<blockquote>
Web Dev Club is amazing. They built my website from the ground up!
</blockquote>
<del>Follow us on Github</del>
</header>
<main>
<div>
<h3>Our Projects</h3>
<p>
We've made a lot of projects. Here are some of our favorites. Check
out our <a href="/projects.html">projects page</a> for more.
</p>
<ol>
<li>Proco (Coding Contest Platform)</li>
<li>
Club Websites
<ul>
<li>ML</li>
<li>Athletes4Others</li>
<li>CAA</li>
<li>GSA</li>
</ul>
</li>
</ol>
</div>
<div>
<h3>Languages We Use</h3>
<p>
WDC teaches and uses a variety of programming languages and frameworks
oriented for Web Development.
</p>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>
Javascript/Typescript
<ul>
<li>React</li>
<li>Next.js</li>
<li>Svelte/SvelteKit</li>
<li>Node.js</li>
</ul>
</li>
<li>
Python
<ul>
<li>FastAPI</li>
<li>Flask</li>
</ul>
</li>
</ul>
</div>
</main>
<footer>
<h4>Copyright 2023 <u>Web Development Club.</u></h4>
<em>
By the way this isn't our real website. You can check it out
<a href="https://lhswebdev.github.io">here</a>.
</em>
</footer>
</body>
</html>