-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (116 loc) · 6.15 KB
/
index.html
File metadata and controls
119 lines (116 loc) · 6.15 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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">
<title>Jamal Khadir's Website</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap" rel="stylesheet">
</head>
<body>
<!--Navbar -->
<nav class="navbar">
<div class="navbar__container">
<a href="/" id="navbar__logo">Jamal Khadir</a>
<div class="navbar__dropdown" id="dropdown-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="#top" class="navbar__links" id="home-page">
Home
</a>
</li>
<li class="navbar__item">
<a href="#about" class="navbar__links" id="about-page">
About
</a>
</li>
<li class="navbar__item">
<a href="#contact" class="navbar__links" id="contact-page">
Contact
</a>
</li>
<li class="navbar__button">
<a href="/resume.html" class="button" target = "_blank">
Resumé
</a>
</li>
</ul>
</div>
</nav>
<!-- Home -->
<div class = "home" id = "home">
<div class="home__container">
<h1 class = "home__header">Hello!</h1>
<h2 class = "home__description">I'm Jamal, <span class="autotype"></span></h2>
<h2 class = "home__description">I'm a graduate from Fordham University with a B.S. in Computer Science.</h2>
<h2 class = "home__description">Learn more about me by clicking the button below!</h2>
<li class="main__button"><a href="#about" class="button">About</a></li>
</div>
</div>
</div>
<!-- About -->
<div class="about" id = "about">
<div class="about__container">
<div class="about__image-container">
<img src="images/portrait.svg" alt="portraitpicture" id="about__image">
</div>
<div class="about__content">
<h1>About Me</h1>
<p>I am located in New York City, and I first began learning about Computer Science through a Python introductory course called "Coding for All" that I took while attending the Bronx High School of Science. I loved the idea of being able to constantly learn how to create new things on a computer.</p>
<p>Shortly after, I took the AP Computer Science course and learned Java. This gave me the opportunity to work with Columbia University instructor Professor Qiu, who mentored me one-on-one and really propelled my love of learning and coding.</p>
<p>I attribute much of my passion for learning, teaching, and Computer Science to this experience, and I love being able to have a positive impact through it!</p>
</div>
</div>
</div>
<!-- Contact -->
<div class="contact" id="contact">
<div class="contact__container">
<h1>Contact</h1>
<p>If you would like to contact me, you can do so by submitting the form below!</p>
<p>Kindly provide your email address so that I know where to email back, as well as the message that you would like to send.</p>
<form action="https://formsubmit.co/jamalkhadir@gmail.com" method="POST">
<input type="hidden" name="_next" value="https://jamalkhadir.github.io/thankyou.html">
<input type="hidden" name="_captcha" value="false">
<input type="hidden" name="_subject" value="New message from personal website">
<div class="field"><input type="email" name="email" placeholder="Email Address" required></div>
<div class="message"><textarea placeholder="Message" name="message" required></textarea></div>
<button type="submit">Send</button>
</form>
</div>
</div>
<!-- Footer -->
<div class="footer__container">
<div class="socials">
<div class="socials-wrap">
<div class="footer__logo">
<a href="/" id="footer__logo">Jamal K.</a>
</div>
<p class = "rights">© Jamal Khadir 2026. All Rights Reserved.</p>
<div class="icons">
<a href="http://github.com/jamalkhadir" class="socials-link" target = "_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<script>
var typed = new Typed(".autotype", {
strings: ["a learner.", "a coder.", "a teacher.", "a tech enthusiast."],
typeSpeed: 50,
backSpeed: 50,
loop: true
})
</script>
</body>
</html>