forked from shubham7668/hacktober
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
178 lines (155 loc) · 6.5 KB
/
portfolio.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
174
175
176
177
178
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width , initial-scale=1.0" />
<title>My Portfolio!</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue&family=Poppins:ital@1&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<link rel="stylesheet" href="./css/style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/script.js"></script>
</head>
</html>
<body>
<nav class="navbar">
<div class="inner-width">
<a href="/" class="logo"></a>
<button class="menu-toggler">
<span></span>
<span></span>
<span></span>
</button>
<div class="navbar-menu">
<a href="#">Home</a>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<!--Home-->
<section id="home">
<div class="inner-width">
<div class="content">
<div class="heroComp">
<span class="head-title">Hello, I am</span>
<span class="head-subtitle">ANSH</span>
<div class="buttons">
<a href="#contact">Hire Me</a>
<a href="#about">Know More!</a>
</div>
</div>
<img class="hackerImage" src="../assets/Hacker-bro 1.png" />
</div>
</div>
</div>
</section>
<section id="about">
<div class="inner-width">
<div class="about">
<div class="about-image">
<img src="../assets/Group 1.png" alt="" class="about-image">
</div>
<div class="unboxing-image">
<img src="../assets/unboxing.png" alt="" class="unboxing-image">
</div>
<div>
<h1 class="section-title" style="margin-top: 50px;">ABOUT ME</h1>
<p class="about-text">
I am a second year CSE student in SRM Institute of Science and Technology.
I have been into coding since a long time and my primary skills include C,C++,Python
Java,HTML,CSS.
</p>
<span class="icons">
<img src="../assets/Vector-1.png" alt="" class="sm">
<img src="../assets/Vector-3.png" alt="" class="sm">
<img src="../assets/Vector-8.png" alt="" class="sm">
</span>
</div>
</div>
</div>
</div>
</section>
<section id="services">
<div class="inner-width">
<div class="section-title" style="padding-top: 150px;text-align: center;"><span
class="titleSection"><b>SERVICES I OFFER</b></span></div>
<br>
<br>
<br>
<div class="services">
<div class="service">
<img src="../assets/Vector-7.png" alt="">
<h4>Graphic Designing</h4>
<br>
<p>I am good with Figma,Illustrator and UI-UX designing </p>
</div>
<div class="serviceMid">
<img src="../assets/Vector-9.png" alt="">
<h4>Web Development</h4>
<br>
<p>I have basic front end knowledge and am still learning web dev.
</p>
</div>
<div class="service">
<img src="../assets/Vector-8.png" alt="">
<h4>
Social Media Marketing
</h4>
<br>
<p>I am good with SEOs and Social media data analytics</p>
</div>
</div>
</section>
<section id="contact">
<div class="inner-width">
<div class="section-title" style="padding-top: 150px;text-align: center;"><span class="titleSection">GET IN
TOUCH</span></div>
<div class="contact">
<div class="formContainer">
<form action="index2.php" method="post" class="contact-form">
<input type="text" name="name" id="name" class="name" placeholder="Name">
<input type="email" name="email" id="email" class="email" placeholder="Email">
<textarea name="message" class="message" placeholder="Message"></textarea>
<button type="submit" id="submit" class="btn">Submit</button>
</form>
</div>
<div>
<div class="contact-info">
<div class="item">
<p class="contact-head" style="margin-top: 90px;">Phone</p>
<p>+91 98876 52232</p>
</div>
<div class="item">
<p class="contact-head">Email</p>
<p> [email protected]</p>
</div>
<div class="item">
<p class="contact-head">Address</p>
<p> Chennai, India</p>
</div>
<div class="item">
<p class="contact-head">Social Media</p>
<span class="contact-icon">
<img src="../assets/Vector-1.png" alt="">
<img href="google.com" src="../assets/Vector-3.png" alt="">
<img src="../assets/Vector-8.png" alt="">
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<footer>
<div class="inner-width">
<div class="copyright">
© 2020 | Created by Ansh
</div>
</div>
</footer>
<button class="goTop fas fa-arrow-up"></button>
</body>