-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 991 Bytes
/
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Bangers&family=Black+Ops+One&family=Creepster&family=La+Belle+Aurore&family=MedievalSharp&family=Orbitron&family=Rye&display=swap" rel="stylesheet">
<script src="index.js"></script>
</head>
<body>
<!--
Challenge 1:
Write the HTML for your personal website.
-->
<img src="Karan.jpg">
<h1>Hi, my name is Karan</h1>
<h2>Fun facts about me:</h2>
<ul>
<li>18 years old</li>
<li>Live in Delhi</li>
<li>Loves coding</li>
<li>I am in creative team of GDSC</li>
</ul>
<p>Please connect with me on <a href="https://www.linkedin.com/in/karanbhatia3420/" taget="_blank">LinkedIn here.</a></p>
<input type="text" placeholder="Enter email...">
<button>Join newsletter</button>
</body>
</html>