-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.html
More file actions
55 lines (51 loc) · 1.68 KB
/
introduction.html
File metadata and controls
55 lines (51 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Fantastic Riddler</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
p {
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
footer {
margin-top: 40px;
text-align: center;
font-size: 0.9em;
color: #666;
border-top: 1px solid #ccc;
padding-top: 10px;
}
</style>
</head>
<body>
<h1>About Fantastic Riddler</h1>
<p>We are Fantastic Riddler, a team of three enthusiastic students currently pursuing our Master’s in Computer Science at North Carolina State University. We are passionate about solving complex problems, and together we are working on various innovative projects to push the boundaries of technology.</p>
<h2>Meet the Team</h2>
<ul>
<li>Dhairya Shah - <a href="mailto:dhshah5@ncsu.edu">dhshah5@ncsu.edu</a></li>
<li>Akshat Shah - <a href="mailto:ashah39@ncsu.edu">ashah39@ncsu.edu</a></li>
<li>Prerak Bhandari - <a href="mailto:pbhanda4@ncsu.edu">pbhanda4@ncsu.edu</a></li>
</ul>
<footer>
© MCS 2024-2026 | North Carolina State University
© 2024 Fantastic Riddles | Masters of Computer Science, North Carolina State University, Raleigh, NC
</footer>
</body>
</html>