-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (54 loc) · 2.38 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="stylesheet" href="portfolio.css" />
<link rel="icon" type="image-x/icon" href="4.png" />
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</head>
<body>
<header class="header">
<a href="#home" class="logo"><span>Ansh</span> Kumar</a>
<nav class="navbar">
<a href="index.html" style="--i: 1">Home</a>
<a href="about.html" style="--i: 2">About</a>
<a href="skills.html" style="--i: 3">Skills</a>
<a href="certificate.html" style="--i:4">Certificates</a>
<a href="contact.html" style="--i: 5">Contact</a>
</nav>
</header>
<section class="about" id="about">
<div class="about-img">
<img src="2.jpeg" alt="This is me" width="350" height="350" />
</div>
<div class="about-text">
<h2>About<span>Me</span></h2>
<h4>Full Stack Developer</h4>
<p>
I am a dedicated Full Stack Web Developer with a passion for building
robust and scalable web applications. My expertise spans both frontend
and backend technologies, allowing me to create dynamic, user-friendly
websites and applications. In addition to my web development skills, I
have a strong background in Python, which I utilize for backend
development, data handling, and automation. <br />
With Python, I have experience working with frameworks like Django and
Flask to develop secure and scalable server-side applications. I also
use Python for API development, database management, and scripting
tasks that enhance productivity and streamline processes. Whether it's
building complex applications or writing efficient algorithms, Python
plays a key role in my development toolkit. In every project, I focus
on clean, maintainable code and always strive to stay updated with the
latest technologies and best practices in both web development and
Python programming.
</p>
<a href="skills.html" class="btn-box">More about me</a>
</div>
</section>
</body>
</html>