-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMy_website.html
More file actions
103 lines (103 loc) · 3.42 KB
/
Copy pathMy_website.html
File metadata and controls
103 lines (103 loc) · 3.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Joe V Kadavan</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 1em 0;
text-align: center;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
nav {
display: flex;
justify-content: center;
padding: 1em 0;
}
nav a {
color: #333;
text-decoration: none;
padding: 0 15px;
text-transform: uppercase;
}
nav a:hover {
color: #007bff;
}
.section {
padding: 2em 0;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: fixed;
width: 100%;
bottom: 0;
}
.about, .portfolio, .contact, .blog {
background: #fff;
margin: 20px 0;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Joe V Kadavan</h1>
<p>Aspiring Engineer | AI Enthusiast | Blogger</p>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
<a href="#blog">Blog</a>
</nav>
<div class="container">
<section id="about" class="section about">
<h2>About Me</h2>
<p>Hello, I'm Joe V Kadavan, a second-year student majoring in Electronics and Computer Engineering at VIT Chennai. I'm particularly interested in artificial intelligence, sustainable engineering, data science, and biotechnology. I am eager to explore the various opportunities and projects available at VIT to deepen my knowledge and skills. In my free time, I enjoy coding, running, and reading exciting and fun blogs. It's great to meet you, and I look forward to learning more from this experience!</p>
</section>
<section id="portfolio" class="section portfolio">
<h2>Portfolio</h2>
<p>Coming soon...</p>
</section>
<section id="contact" class="section contact">
<h2>Contact</h2>
<p>Phone: +91 9962548113</p>
<p>Email: joe@example.com</p>
</section>
<section id="blog" class="section blog">
<h2>Blog</h2>
<p>Check out my blog: <a href="https://bealwaysjoe.blogspot.com/2023/12/semester-1-experience.html" target="_blank">Semester 1 Experience</a></p>
<p>Visit my full blog: <a href="https://bealwaysjoe.blogspot.com" target="_blank">Joe's Blog</a></p>
</section>
</div>
<footer>
<p>© 2024 Joe V Kadavan. All rights reserved.</p>
</footer>
</body>
</html>