-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 2.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="shortcut icon" href="images/cs42fav.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<title>CS42</title>
</head>
<body>
<header>
<span class="logo">
<a href="https://cs-42.github.io/CS42-Homepage/"><img src="images/cs42update.png " alt="CS-42logo" height="fitcontent"></a>
</span>
<nav>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#About">About us</a></li>
<li><a href="#Projects">Projects</a></li>
<li><a href="#Socials">Socials</a></li>
</ul>
<div class="menu">
<div class="menubtn">
More
</div>
<div class="items">
<a href="#Home">Home</a>
<a href="#About">About us</a>
<a href="#Projects">Projects</a>
<a href="#Socials">Socials</a>
</div>
</div>
</nav>
</header>
<main>
<div class="home" id="Home">
<div class="intro">
<h1>Welcome to Computer Science
</h1>
</div>
</div>
</main>
<div class="about" id="About">
<p>Mastering Computer Science one project at a time.</p>
</div>
<div class="projects" id="Projects">
<h1>Projects</h1>
<div class="grid">
<div class="p">
<h1>
Implementation
</h1>
<p>
Implementations of programming tasks in multiple languages.
</p>
<a href="https://github.com/CS-42/Implementations" target="_blank"><img src="images/github.png" alt="" height="50px" width="50px"></a>
</div>
<div class="p">
<h1>
CS42-Homepage
</h1>
<p>
Homepage for the Computer Science Discord server
</p>
<a href="https://github.com/CS-42/CS42-Homepage" target="_blank" ><img src="images/github.png" alt="" height="50px" width="50px"> </a>
</div>
</div>
</div>
<div class="socials" id="Socials">
<h1>Our socials</h1>
<div class="dc">
<p>
<a href="https://discord.gg/Z4bntSAQ"target=_blank><img src="images/discord.png" alt="Discordlogo"height="50px" width="70px"></a>
</p>
</div>
<div class="gt">
<p><a href="https://github.com/CS-42"target=_blank><img src="images/github.png" alt="Githublogo" height="50px" width="50px"></a>
</p>
</div>
</div>
</div>
</body>
</html>