-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (62 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>My Personal Website</title>
</head>
<body>
<header>
<img class="picedit" src="IMG_ARYAN lol1.ico"/>
<div class="topbarsection">
<h1>My Personal Website</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>
Welcome to my personal website! I am Aryan Kumar, a passionate coder with expertise in various programming languages and technologies. I love building innovative solutions and enjoy working on challenging projects.
</p>
<p>
Connect with me on LinkedIn to learn more about my professional background and experience:
<a href="https://in.linkedin.com/in/aryankumarakj?trk=profile-badge" target=”_blank”>Aryan Kumar on LinkedIn</a>
</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<!-- Add your projects here -->
<h2>soon i will be adding multiple projects</h2>
<h2>for now you can visit my github page <a href="http://github.com/aryankumarakj" target=”_blank”>My git hub page</a></h2>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<p>
Feel free to reach out to me with any inquiries or collaboration opportunities. You can message me at <a href="https://twitter.com/aryankumarakj">My twitter</a>.
</p>
<label for=name value="Name" >Name </label>
<input type="text" required />
<label for=number value="number">Number</label>label>
<input type="number" maxlength=10 required />
</div>
</section>
<footer>
<div class="container">
© 2023 Aryan Kumar | All rights reserved
</div>
</footer>
<script src="script.js"></script>
</body>
</html>