-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (110 loc) · 4.07 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Basic HTML</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main>
<nav class="navBar">
<h1><b>PIYUSH NEGI PORTFOLIO</b></h1>
<div class="navigationmenu">
<a href="#aboutMe">About Me</a>
<a href="#skills">Skills I Got</a>
<a href="#projects">Project</a>
<a href="#aechivement">Aechivements</a>
<a href="#contactForm">Lets Connect</a>
</div>
</nav>
<section class="herosection">
<img class="profileImage" src="Images/man-shows-gesture-great-idea_10045-637.webp">
<div class="herosectionDetails">
<h1>PIYUSH NEGI</h1>
<h3>STUDENT AT DIT UNIVERSITY</h3>
</div>
</section>
<section class="AboutMe" id="#aboutMe">
<h1>ME AND MYSELF </h1>
<p>
Hello Everyone My name is Piyush Negi. Currently I am Pursuing B-Tech in computer science and engineering from
DIT University Dehradun.
I am fresher and now Currently I am looking ForFreelance Jobs . I have a Greate Knowledge of computer
programming as well as creative softwares
like Adobe Photoshop , Adobe After Effects, Filmora And Many More . I am looking for
a job in the field of software development where I can give my 100% best to arise the level of company As Well
As
My Country. Currently My dream company is TCS Because TCS provides Us a vast no of opportunites For Our Future
and
Helps Us to Grow .
</p>
</section>
<section class="skillsAndprojects">
<div class="skills" id="skills">
<h1 class="cardHeading">Skills</h1>
<img src="Images/html.svg" title="HTML">
<img src="Images/cc.svg" title="C++">
<img src="Images/python.svg" title="Python">
<img src="Images/mysql.svg" title="Mysql">
<img src="Images/After effect.svg" title="AfterEffect">
<img src="Images/Photoshop.svg" title="Adobe Photoshop">
<img src="Images/c.svg" title="C">
</div>
<div class="projects" id="projects">
<h1 class="cardHeading"> Projects</h1>
<div class="Projectcontainer">
<img src="Images/After effect.svg">
<div class="projectdescription">
<h4>Editior</h4>
<p> Worked As a Editor For Many Content Creators
</p>
</div>
</div>
<div class="projects" id="projects">
<div class="Projectcontainer">
<img src="Images/html.svg">
<div class="projectdescription">
<h4>Hotstar Clone</h4>
<p>Disney Plus Hotstar clone using HTML And CSS
</p>
</div>
</div>
</div>
</section>
<section class="Aechive">
<div class="aechivement" id="aechivement">
<h1 class="cardHeading"> Aechivements</h1>
<div class="aechivement">
<img src="Images/game.svg" title="Gamer">
<div class="aechivement">
<h4>GAMER</h4>
</div>
</div>
<div class="aechivement" id="aechivement">
<div class="aechivement">
<img src="Images/Photoshop.svg" title="Adobe Photoshop">
<div class="aechivement">
<h4>EDITOR</h4>
</div>
</div>
</section>
<section class="contactForm" id="contactForm">
<h1>Let's Connect! </h1>
<div class="formGroup">
<label for="name">Enter Full Name</label><br />
<input type="text" id="name" placeholder="Full Name" />
</div>
<div class="formGroup">
<label for="Email">Email</label><br />
<input type="text" id="name" placeholder="Email" />
</div>
<div class="formGroup">
<label for="Message"> Message</label><br />
<textarea placeholder="Send Your Message" id="message" name="w3review" rows="5" cols="70"></textarea>
</div>
<button class="SubmitButton" onclick={submit()}>Connect</button>
</section>
</main>
</body>
</html>