-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsome-webpage.html
More file actions
60 lines (57 loc) · 1.83 KB
/
some-webpage.html
File metadata and controls
60 lines (57 loc) · 1.83 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
56
57
58
59
60
<html>
<table border="1">
<tr>
<th>Names</th>
<th>Emails</th>
</tr>
<tr>
<td>Varun Varatharajan</td>
<td><a href="mailto:vvarath@ncsu.edu">vvarath@ncsu.edu</a></td>
</tr>
<tr>
<td>Makarand Pundlik</td>
<td><a href="mailto:mpundli@ncsu.edu">mpundli@ncsu.edu</a></td>
</tr>
<tr>
<td>Michelle Varghese</td>
<td><a href="mailto:mmvarghe@ncsu.edu">mmvarghe@ncsu.edu</a></td>
</tr>
</table>
<h1>GradHackersGuild</h1>
<p>
GradHackersGuild is a dynamic coding team driven by a passion for computer science<br>
and a dedication to building impactful projects. Known for tackling complex challenges,<br>
the team brings together creative minds and technical expertise to create a range of<br>
exciting e-projects, from innovative web apps and intelligent data solutions to powerful<br>
machine learning models.
</p>
<p>
Each member of GradHackersGuild contributes unique skills, fostering a collaborative<br>
environment that encourages experimentation and growth. Their projects focus on real-world<br>
applications, empowering team members to explore cutting-edge technology, learn new skills,<br>
and ultimately make a difference in the tech community.<br>
</p>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<p>This is a sample homework footer</p>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>Email: mpundli@ncsu.edu</p>
<p>Phone: (123) 456-7890</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">Instagram</a>
<a href="https://github.com/GradHackersGuild/">Github</a>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 GradHackersGuild. All rights reserved.</p>
</div>
</footer>
</html>