-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (126 loc) · 4.09 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
<!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>
<div class="nav-container">
<div class="wrapper">
<nav>
<div class="logo">
PORTFOLIO
</div>
<ul class="nav-items">
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#About">About</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</nav>
</div>
</div>
<span id="Home">
<div class="header-container">
<div class="wrapper">
<header>
<div class="hero-content">
<h1>Hi, I'm Pratik</h1>
<p>I am a Computer Engineering student, from MESCOE, Pune.</p>
<a href="#Contact">
Contact
</a>
</div>
<div class="hero-image">
<img src="images/Profile.png" alt="Photo" />
</div>
</header>
</div>
</div>
</span>
<span id="About">
<div class="about">
<div class="wrapper">
<div class="p1">
<pre>
Hello There,
I'm Pratik Avinash Pawar.
I completed my 10th & 12th from Nashik,
Currently I am persuing degree in Computer
Engineering from MESCOE, Pune
</pre>
</div>
<div class="p2">
<pre>
Sketching, Drawing, Web Design, Web and App UI
HTML and CSS, C and C++, these are few my Hobbies
and Intrests.
I had some work Experience also you can find more
about it in my Resume, at the end of this site.
</pre>
</div>
</div>
</div>
</span>
<span id="Contact">
<div class="contact">
<div class="wrapper">
<div class="hd">
<h1>
Lets get connected ;)
</h1>
</div>
<div class="social">
<h2>
Socially
</h2>
<a href="https://www.instagram.com/the.pratikpawar" target="_blank" >
<img src="images/Insta.svg" alt="Insta logo">
</a>
</div>
<div class="official">
<h2>
Officially
</h2>
<images>
<!-- <div id="img1">
<a href="www.pratikpawar2703@gmail.com">
<img src="images/Gmailogo.svg">
</a>
</div> -->
<div id="img2">
<a href="https://www.linkedin.com/in/pratik-pawar-6a7725213" target="_blank" >
<img src="images/LinkedLogo.svg">
</a>
</div>
<div id="img3">
<a href="https://github.com/Pawar-Pratik" target="_blank" >
<img src="images/GitHubLogo.svg">
</a>
</div>
</images>
</div>
<div class="doc">
<a download="" href="Resources/Pratik Pawar (Resume).pdf">
Resume
</a>
<p>
</p>
</div>
<div class="tx">
Thanks For Visiting !!
</div>
</div>
</div>
</span>
<script src="main.js"></script>
</body>
</html>