-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (67 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS-My site</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico">
<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=DM+Serif+Display:ital@0;1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<div class="top">
<img class="top-cloud" src="images/cloud.png" alt="cloud">
<h1>I'm Kartik.</h1>
<h2>A <span>Web developer</span> and <span>Ethical Hacker</span>.</h2>
<img class="bottom-cloud" src="images/cloud.png" alt="cloud2">
<img src="images/mountain.png" alt="mountain" height="400px">
</div>
img
<div class="middle-container">
<div class="profile">
<img src="images/mypic.jpg" alt="">
<h2>Welcome</h2>
<p id="intro">I am Web developer and an aspiring Ethical Hacker. Other than that I advocate for Veganism and Animal Rights and have keen interest in Chess & Spirituality.</p>
</div>
<hr>
<div class="skills">
<h2>My Skills.</h2>
<div class="skill-row">
<img id="img-left"src="code.png" alt="">
<h3>Front End Development</h3>
<p>Learning HTML, CSS and JavaScript from Angela Yu.</p>
</div>
<div class="skill-row">
<img id="img-right" src="images/hacker.gif" alt="">
<h3>Ethical Hacking</h3>
<p>Learning Ethical Hacking from IIT Roorkie course of Intellipat.</p>
</div>
</div>
<hr>
<div class="hobbies-row">
<center><h2>My Hobbies</h2></center>
<img id="img-left" src="images/chess-chesscom.gif" alt="">
<h3>Chess</h3>
<p>I started playing chess during lockdown after watching Samay Raina.</p>
</div>
<hr>
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>If you love playing chess, as much as I do.</h3>
<p>Let's play a game of chess or we can code a chess website.</p>
<a class="btn" href="mailto:[email protected]">CONTACT ME</a>
</div>
</div>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://instagram.com/">Instagram</a>
<a class="footer-link" href="https://www.github.co/">GitHub</a>
<p>© 2024 Kartik Dewnani</p>
</div>
</body>
</html>