-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (80 loc) · 3.26 KB
/
index.html
File metadata and controls
84 lines (80 loc) · 3.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</nav>
<section id="home">
<div class="main">
<h1 class="headings">I AM <br>DARSH YADAV</h1>
</div>
</section>
<section id="about">
<h1 class="heading">ABOUT ME</h1>
<div id="pic">
<div id="intro">
<h2>DARSH YADAV</h2>
<p>Hello my name is Darsh yadav. I study in class 9th. I was born on 12 may 2007. I was born in India.
I live in India. I study in Sachdeva Public School.
I love to code and learn different things. I like to read books. I love to play video games.
</p>
</div>
</div>
</section>
<section id="gallery">
<h1 class="headings">GALLERY</h1>
<div class="gallery">
<img src="Images/Blender.png" alt="">
<img src="Images/Html.png" alt="">
<img src="Images/Audacity.png" alt="">
<img src="Images/photoshop.png" alt="">
<img src="Images/pygame.png" alt="">
<img src="Images/pygame2.png" alt="">
</div>
</section>
<section id="skills">Images/
<h1 class="headings">SKILLS</h1>
<div class="row">
<div class="box">
<img src="Images/python.png" alt="">
<h1 class="headings">PYTHON</h1>
<p>I know basic Python and made many projects.I made a AI assistant called Jarvis. I made a Flappy Bird using pygame</p>
</div>
<div class="box">
<img src="Images/html2.png" alt="">
<h1 class="headings">HTML/CSS</h1>
<p>I have made many projects using HTML and CSS like this one.</p>
</div>
<div class="box">
<img src="Images/film-editing.png" alt="">
<h1 class="headings">Editing</h1>
<p>I know editing.I use Premiere Pro for video editing it is a very good software.I use Photoshop for photo editing it is
a good software for making thumbnail and editing photo.I use Audacity for audio editing. I also use Blender for 3d
modeling.
</p>
</div>
</div>
</section>
<section id="contact">
<h1 class="headings">CONTACT ME</h1>
<form action="" class="form"></form>
<input type="text" name="name" class="input" placeholder="Enter Your Name">
<input type="email" name="email" class="input" placeholder="Enter Your Email">
<textarea name="msg" id="msg" cols="30" rows="10" placeholder="Enter Your Message"></textarea>
<input type="submit" value="SEND" id="send">
</section>
</body>
</html>