-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (136 loc) · 5.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Amit Kumar| My portfolio</title>
<!--Css stylesheet file link-->
<link rel="stylesheet" href="css/style.css">
<!--Bootstrap link-->
<!--Google font link-->
<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=Berkshire+Swash&family=Poppins&family=Raleway&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/skills.css">
</head>
<body>
<div class="portfolio">
<div class="background">
<video class="background-clip" autoplay muted loop width="100%">
<source src="asset/video/background.mp4" type="video/mp4">
</video>
</div>
<div class="nav-bar">
<div class="logo">Amit Kumar</div>
<div class="nav-links">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#skills">skills</a></li>
<li><a href="#project">Project</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<div class="profile">
<div class="intro-text">
Hii,<br>I am Amit Kumar <br> Web developer
</div>
<div class="image">
<img src="asset/portfolio.jpg" alt="">
</div>
</div>
</div>
<!--About section start here-->
<div id="about">
<div class="about-content-1">
<img class="about-profile-pic" src="asset/images/about.jpg" alt="">
</div>
<div class="about-content-2">
<h1>About Me</h1>
<p>Hello , <br>Myself <span>Amit Kumar</span>. I am currently pursuing B.tech degree in <span>Information
Technology</span> from cusat.A dedicated learner in the field of <span>web development</span> and
<span>software engineering</span>. I have created responsive and user-friendly interfaces.Currently i'm
expanding my knowledge in the field of <span>MERN</span> for dynamic Web development.</p>
</div>
</div>
<!--About section end here-->
<!--Skills Section start here-->
<div id="skills">
<div class="skills"> <!-- create a div -->
<h1>My Skills</h1> <!-- heading -->
<li>
<h3>HTML</h3><span class="bar"><span class="html"></span></span> <!-- skill bar 1 -->
</li>
<li>
<h3>CSS</h3><span class="bar"><span class="css"></span></span><!-- skill bar 2 -->
</li>
<li>
<h3>JAVASCRIPT</h3><span class="bar"><span class="javascript"></span></span><!-- skill bar 3 -->
</li>
<li>
<h3>C++</h3><span class="bar"><span class="c"></span></span><!-- skill bar 4 -->
</li>
<li>
<h3>Php</h3><span class="bar"><span class="php"></span></span><!-- skill bar 4 -->
</li>
<li>
<h3>My sql</h3><span class="bar"><span class="mysql"></span></span><!-- skill bar 4 -->
</li>
</div>
</div>
<!--Skills Section end here-->
<!--project Section start here-->
<div id="project">
<h1>My Project</h1>
<div class="my-project">
<div class="project-section project-hover">Food Ordering Website</div>
<div class="project-section project-hover">Simon Game</div>
<div class="project-section project-hover">Tic Tac Toe</div>
<div class="project-section project-hover">Snake Game</div>
<div class="project-section project-hover">To Do List</div>
<div class="project-section project-hover">Spotify Clone</div>
</div>
</div>
<!--project Section end here-->
<!--contact Section start here-->
<div id="contact">
<h1>Get in Touch</h1>
<div class="contact-section">
<div class="contact-form">
<h2>Send Enquiry</h2>
<div class="form-section">
<form action="">
<input type="text" name="fname" id="fname" placeholder="Enter your name ...">
<input type="email" name="email" id="emai" placeholder="email">
<input type="number" name="mob-number" id="mob-number" placeholder="Contact no.">
<textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea>
<input type="reset" id="reset" value="Reset">
<input type="submit" id="submit" value="Send Message">
</form>
</div>
</div>
<div class="contact-maps">
<iframe class="city-map"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d251482.4572508226!2d76.13612014280297!3d9.982669694225931!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3b080d514abec6bf%3A0xbd582caa5844192!2sKochi%2C%20Kerala!5e0!3m2!1sen!2sin!4v1694502108469!5m2!1sen!2sin"
style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</div>
<!--contact Section end here-->
<!--footer secction start here-->
<footer>
<div class="footer">
<h3>Made by ❤️ Amit Kumar</h3>
</div>
</footer>
<!-- <div class="music">
<audio src="asset/images/" id="music"></audio>
</div> -->
<!--footer secction end here-->
<!--Javascript file link-->
<script src="index.js"></script>
</body>
</html>