-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (102 loc) · 3.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jibin Jacob</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Header Section -->
<header>
<nav>
<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="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="header-content" id="home">
<h1>Hi There,<br> I'm <span>Jibin Jacob</span></h1>
<p>I Am Into Web Designing!</p>
<div class="social-media">
<a href="#"><img src="facebook.png" alt="Facebook"></a>
<a href="#"><img src="twitter.png" alt="Twitter"></a>
<a href="#"><img src="linkedin.png" alt="LinkedIn"></a>
<a href="#"><img src="instagram.png" alt="Instagram"></a>
</div>
</div>
</header>
<!-- About Me Section -->
<section id="about">
<div class="about-container">
<img src="CSE-B Jibin Jacob .jpg" alt="Jibin Profile">
<div class="about-text">
<h2>About Me</h2>
<p>I'm Jibin, a Full Stack Developer.I specialize in web development and am passionate about improving my coding skills. I work with various technologies including HTML, CSS, JavaScript, and React.</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills & Abilities</h2>
<div class="skills-grid">
<div class="skill">ReactJS</div>
<div class="skill">NodeJS</div>
<div class="skill">Bootstrap</div>
<div class="skill">HTML5</div>
<div class="skill">CSS3</div>
<div class="skill">JavaScript</div>
<div class="skill">Java</div>
<div class="skill">PHP</div>
<div class="skill">Python</div>
<div class="skill">MongoDB</div>
<div class="skill">MySQL</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects Made</h2>
<div class="projects-grid">
<div class="project">
<h3>Travel itinerary Website</h3>
</div>
<div class="project">
<h3>Fuel Cost and EV Charge Cost Calculator</h3>
</div>
</div>
<button><strong>View All</strong></button>
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Get In Touch</h2>
<form action="#" method="post">
<input type="text" name="name" placeholder="Name" required>
<input type="email" name="email" placeholder="Email" required>
<input type="tel" name="phone" placeholder="Phone" required>
<textarea name="message" placeholder="Message" required></textarea>
<button type="submit"><strong>Submit</strong></button>
</form>
</section>
<!-- Footer Section -->
<footer>
<div class="footer-content">
<p>Designed With <span>♥</span> by Jibin Jacob</p>
<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="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="contact-info">
<p>Phone: +91 7506584298</p>
<p>Email: [email protected]</p>
<p>Kottayam, India 686518</p>
</div>
</div>
</footer>
</body>
</html>