-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (94 loc) · 2.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-sacel=1.0" />
<title>Home - JordanJunaidi</title>
<link rel="stylesheet" href="style.css" />
<!-- Icons-->
<link href="./assets/icons/css/fontawesome.css" rel="stylesheet" />
<link href="./assets/icons/css/solid.css" rel="stylesheet" />
<link href="./assets/icons/css/brands.css" rel="stylesheet" />
</head>
<body>
<!-- NavBar -->
<div class="nav-bar">
<nav>
<a href="#" class="active"><i class="fa-solid fa-house"></i></a>
<a href="./about.html"><i class="fa-solid fa-user"></i></a>
<a href="./contact.html"><i class="fa-solid fa-envelope"></i></a>
</nav>
<ul class="socials">
<!-- LinkedIn -->
<li>
<a
target="_blank"
rel="noreferrer"
href="https://www.linkedin.com/in/jordan-junaidi-7524a5247/"
><i class="fa-brands fa-linkedin"></i
></a>
</li>
<!-- Github -->
<li>
<a
target="_blank"
rel="noreferrer"
href="https://github.com/JordanJunaidi"
><i class="fa-brands fa-github"></i>
</a>
</li>
</ul>
</div>
<!-- Introduction -->
<section class="home">
<div class="home-content">
<h3>Hi,</h3>
<h1>I'm Jordan</h1>
<h2>Computer Science Student</h2>
<p>
Welcome to my personal website! I'm a first-year computer science
student at the University of California, San Diego. Explore my page to
find out more about me!
</p>
<div class="btn-box">
<button
class="btn-1"
onclick="window.location.href = './about.html';"
>
About Me
</button>
<button
class="btn-2"
onclick="window.location.href = './contact.html';"
>
Contact
</button>
</div>
</div>
<div class="img-box"><img src="assets/images/pfp.png" /></div>
</section>
<!-- Introduction
<div class="intro">
<div class="content-container">
<div class="text-zone">
<h1>
Hi, <br />
I'm Jordan
</h1>
<h2>Computer Science Student</h2>
</div>
<div class="img-zone">
<img src="assets/images/pfp.png" />
</div>
</div>
<div class="description">
<p>
Welcome to my personal website! I'm a first-year computer science
student at the University of California, San Diego. Explore my page to
find out more about me!
</p>
</div>
</div>
-->
</body>
</html>