-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (91 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Krish's Webpage</title>
<link rel="stylesheet" href="style.css" />
<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=Merriweather&family=Montserrat&family=Sacramento&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="top-container">
<img src="Images/cloud.png" alt="Cloud Image" class="top-cloud" />
<h1>I'm Krish</h1>
<h2><span class="pro"> a programmer.</span></h2>
<img
src="Images/cloud.png"
alt="cloud image"
class="bottom-cloud"
/>
<img src="Images/mountain.png" alt="mountain" />
</div>
<div class="middle-container">
<div class="profile">
<img src="Images/personal-photo.png" alt="Profile Photo" />
<h2>Hello,</h2>
<p class="intro">
I'm Krish , I Recently learned Python. And now, I also learning
JavaScript With React. I like Proggraming langauge.
</p>
</div>
<hr />
<div class="skills">
<h2>My skills</h2>
<div class="skill-row">
<img
class="python-img"
src="Images/Python Resize.png"
alt=""
class="python-img"
/>
<h3>Python</h3>
<p>
Python is a popular high-level programming language known for its
simplicity, readability, and versatility. Python is widely used in
various domains such as web development, data science, artificial
intelligence, automation, scientific computing, and more.
</p>
</div>
<div class="skill-row">
<img
class="java-script-img"
src="Images/jsimg.png"
alt="JavaScript"
/>
<h3>JavaScript</h3>
<p>
JavaScript is a versatile and widely-used programming language
primarily used for developing interactive and dynamic
websites.JavaScript allows developers to add functionality,
interactivity, and behavior to web pages, making it an essential
part of modern web development.
</p>
</div>
</div>
<hr />
<div class="contact-me">
<h2>Get In Touch</h2>
<h3>Feel free to reach out to me anytime; I'm here to help.</h3>
<p class="contact-message">
If you have any questions to contact me.
</p>
<a href="mailto: [email protected]" class="btn">Contact Me</a>
</div>
</div>
<div class="social-container">
<a
href="https://www.linkedin.com/in/krish-agaja-54862b247/"
class="footer-link"
>LinkedIn</a
>
<a href="https://github.com/krishxtc" class="footer-link">GitHub</a>
<a href="https://twitter.com/KrishAgaja2" class="footer-line">Twitter</a>
<p class="copy-right">© Krish Aagja @krishx12</p>
</div>
</body>
</html>