-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathravi.html
63 lines (58 loc) · 1.17 KB
/
ravi.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
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
}
section {
padding: 40px;
}
.about {
background-color: #f1f1f1;
}
.projects {
background-color: #fff;
}
.project-item {
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Blog</h1>
</header>
<section class="about">
<h2>About Me</h2>
<marquee>I am senthazal ravi</marquee>
<marquee direction = "up">I am your annoying course Instructor</marquee>
</section>
<section class="projects">
<h2>My Projects</h2>
<div class="project-item">
<h3><a href="/ravi_calculator.html">Checkout My Calculator</a></h3>
<p>Javascript calculator project</p>
</div>
<div class="project-item">
<h3>Project 2</h3>
<p>Description of project 2.</p>
</div>
<div class="project-item">
<h3>Project 3</h3>
<p>Description of project 3.</p>
</div>
</section>
</body>
</html>