-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.59 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
<!--CSCI 355-->
<!--SUMMER 2024-->
<!--Sabeha Khan-->
<!--Assignment 7: Basic Webpage-->
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Links
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="resume.html">Resume</a>
<a href="https://www.linkedin.com/in/sabeha-khan/">LinkedIn</a>
<a href="https://github.com/Sab3ha">GitHub</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">About
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="contact.html">Contact Me</a>
</div>
</div>
</div>
<div><img src="profile.jpeg" alt="profile"></div>
<h1>Sabeha Khan</h1>
<p>I'm a senior at Queens College majoring in Computer Science.</p>
<p>Fun fact: I am trilligual. Other than English, I know Bengali(native) and Hindi(conversational)</p>
<h2>Experience</h2>
<p>Cybersecurity Student Consultant at Open Avenues Foundation from February 2024-March 2024</p>
<h2>Projects</h2>
<p><a href="week2assignment.html">Week 2: Basic WebGL Star</a></p>
<p><a href="week3assignment.html">Week 3: Basic Three.js Character</a></p>
<p><a href="week4assignment.html">Week 4: Three.js Earth</a></p>
<p><a href="week4assignment.html">Week 5: Three.js Humanoid Alien</a></p>
</body>
</html>