-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (143 loc) · 5.22 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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>Portofolio</title>
<link rel="icon" type="image/jpg" href="favi.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--header section start-->
<header>
<div class="user">
<img src="Me.jpg" alt="">
<h3 class = "name">Ninad Karkhanis</h3>
<p class = "desc">Front End Developer</p>
</div>
<nav class="Navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#edu">Education</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
<!--<li><a href="#Other">Other Stuff</a></li>-->
</ul>
</nav>
</header>
<!--header section end-->
<div id="menu" class="fas fa-bars">
</div>
<!--home section start-->
<section class="home" id="home">
<h3>HELLO THERE</h3>
<h1>I'M <span>ninad karkhanis</span></h1>
<br>
<P>Currently, I am pursuing a bachelor's degree in computer applications. Front-end development is my area of interest. This website is to showcase my projects. Additionally, I am familiar with C, C#, Java, and Python.</P>
<br>
<a href="#about"><button class="btn">about me <i class= "fas fa-user"></i></button></a>
</section>
<!--home section ends-->
<!--about section starts here-->
<section class="about" id="about">
<h1 class="heading"><span>about</span> me</h1>
<div class="row">
<div class="info">
<h3> <span> name :</span> ninad karkhanis</h3>
<h3> <span> age :</span> 19</h3>
<h3> <span> qualification :</span> BCA</h3>
<a href="download.png"><button class="btn"> download CV <i class="fas fa-download"></i></button></a>
</div>
<div class="counter">
<div class="box">
<span>_</span>
<h3>projects completed</h3>
</div>
<div class="box">
<span>1</span>
<h3>year of experience</h3>
</div>
</div>
</div>
</section>
<!--about section ends here-->
<!--education section starts here-->
<section class="education" id="edu">
<h1 class="heading"> my <span>education</span> </h1>
<div class="box-container">
<div class="box">
<i class="fas fa-book"></i>
<span>2019</span>
<h3>Secondary School Certificate Exam (SSC)</h3>
<p>RCTS PMM ROTARY SCHOOL</p>
</div>
<div class="box">
<i class="fas fa-book"></i>
<span>2021</span>
<h3>Higher School Certificate Exam (HSC)</h3>
<p>C.H.M College</p>
</div>
<div class="box">
<i class="fas fa-graduation-cap"></i>
<span>2024</span>
<h3>Bachelor's in Computer Application</h3>
<p>Somaiya Vidyavihar University</p>
</div>
</div>
</section>
<!--education section ends here-->
<!--portfolio section starts here-->
<section class="portfolio" id="portfolio">
<h1 class="heading"> my <span>portfolio</span> </h1>
<div class="box-container">
<div class="box">
<img src="port.jpg" alt="">
</div>
<div class="box">
<img src="port.jpg" alt="">
</div>
<div class="box">
<img src="port.jpg" alt="">
</div>
<div class="box">
<img src="port.jpg" alt="">
</div>
<div class="box">
<img src="port.jpg" alt="">
</div>
<div class="box">
<img src="port.jpg" alt="">
</div>
</div>
</section>
<!--portfolio section ends here-->
<!--contact section starts here-->
<section class="contact" id="contact">
<h1 class="heading"> <span>contact</span> me </h1>
<div class="row">
<div class="content">
<h3 class="title">contact info</h3>
<div class="info">
<h3> <i class="fas fa-envelope"></i> [email protected]</h3>
<h3> <i class="fas fa-phone"></i> 123456789</h3>
<h3> <i class="fas fa-map-marker-alt"></i> mumbai,india - 400104</h3>
</div>
</div>
<!--
<form action="">
<input type = "text" placeholder="name" class="box">
<input type = "email" placeholder="email" class="box">
<input type = "text" placeholder="project" class="box">
<textarea name="" id = "" cols="30" rows="10" class="box message" placeholder="message"></textarea>
<button type ="submit" class="btn"> send <i class="fas fa-paper-plane"></i> </button>
</form>
</div>
</section>-->
<!--contact section ends here-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src=" main.js"></script>
</body>
</html>