-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (103 loc) · 4.32 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
<!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 Website</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="jquery-3.5.1.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<!-- navbar -->
<nav class="navbar">
<label class="logo"><h5 class="animate__animated animate__heartBeat animate__infinite animate__delay-.2s">Logo</h5></label>
<ul>
<li><a href="#Home" class="menu-button">Home</a></li>
<li><a href="#About" class="menu-button">About</a></li>
<li><a href="#Contact" class="menu-button">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</nav>
<!-- home section -->
<section id="Home">
<div class="Home">
<h2 class="animate__animated animate__backInLeft animate__fast animate__delay-.5s">Hello, I Am</h2>
<h1 class="animate__animated animate__backInLeft animate__fast animate__delay-1s"> Pooja Gotarne</h1>
<button class="btn"><b >Hire me</b></button>
<img id="img" src="pooja.JPG">
</div>
</section>
<!--About section-->
<section id="About">
<div class="About">
<h3>About me</h3><br>
<p id="para1">I'm Pooja and I'm a Student.</p><br>
<p id="para2">Welcome to my mini Portfolio Website.</p><br>
<p>My Name is Pooja Pratap Gotarne. I am basically from Wada, Dist. Palghar. I have completed my 10th as well as 12th
std from PJ High School & Jr.College in Wada.
Now I am currently Persuing Bachelor's Of Engineering in Information Technology from Bharati Vidyapeeth College
Of Engineering, Navi Mumbai. <br>
I have completed many Programming Language certification courses on various platform as well as joined the various
internships to improve my skills. Apart from this I am honest and helpful in nature.According to me, I have a
special quality that I am adjustable in nature. It’s a strength of me.</p>
<br>
<!-- skills -->
<div class="skills">
<h2 class="s">TechSkills</h2><br>
HTML
<br />
<progress max="100" value="75"></progress><br />
CSS 3
<br />
<progress max="100" value="60"></progress>
<br />
Javascript
<br />
<progress max="100" value="50"></progress>
<br>
MYSQL
<br>
<progress max="100" value="60"></progress>
<br /><br>
<h2 class="s">Other Skills</h2>
<img class="img1" src="badminton.jfif" width="300px" height="300px">
<img class="img1" src="music.jfif" width="300px" height="300px">
</div>
</section>
<!--contact section-->
<section id="Contact">
<div class="contactdiv">
<div class="Contact">
<h3>Contact me</h3><br><br>
<form class="form">
<input type="text" name="yourname" placeholder="Your Name"><br><br>
<input type="email" name="email" placeholder="Your Email"><br><br>
<textarea rows="5" cols="20" placeholder="Your Message"></textarea><br><br>
<button type="submit" class="btn1">Submit</button>
</form><br><br><br>
<div class="icons">
<h4>OR</h4><br>
<a href="https://www.linkedin.com/in/pooja-gotarne-878820216/"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/poojagotarne3513/"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</section>
<!-- footer section start -->
<footer>
<span>Created By Pooja Gotarne | <span class="far fa-copyright"></span> 2021 All rights reserved.</span>
</footer>
</body>
</html>