FSD Week1
FSD Week1
Week-1
Name:K.Dhanush Class: CSM-C
RollNo: 22R21A66F8 Date: 22-01-25
Source Code:
!
< DOCTYPE
html >
<
html
lang=
"en"
>
<
head
>
<
meta
charset =
"UTF-8"
>
<
meta
name =
"viewport"
content =
"width=device-width,
initial-scale=1.0"
>
<
title
>
My Simple Website
</
title
>
<
style
>
body {
font-family :
Arial ,
sans-serif
;
margin :
0;
padding :
0
;
background-color :
#f9f9f9 ;
}
header {
background-color :
#4CAF50 ;
color :
white ;
padding :
10px 20px ;
text-align :
center ;
}
nav {
background-color :
#333;
overflow :
hidden ;
}
nav a{
float :
left ;
display :
block ;
color :
white ;
text-align :
center ;
padding :
14px 20px ;
text-decoration :
none;
}
nav a:hover {
background-color :
#ddd;
color :
black ;
}
.content {
margin :
20px ;
padding :
10px ;
background :
white ;
border :
1px solid #ccc;
border-radius :
5px;
}
footer {
background-color :
#333
;
color
:
white ;
text-align:
center ;
padding
:
10px 0
;
position
:
fixed ;
width
:
100%;
bottom
:
0;
}
</
style
>
</
head
>
<
body
>
<
h
eader >
<
h1
>
Welcome to the Website
</
h1
>
<
p
>
A simple webpage with navigation, content,
and footer
</
p
>
</
header
>
<
nav
>
<
a
href
=
"#home"
>
Home
</
a
>
<
a
href
=
"#about">
About</
a
>
<
a
href
=
"#services" >
Services
</
a
>
<
a
href
=
"#contact" >
Contact </
a
>
</
nav
>
<
d
ivid=
"home"
class
=
"content"
>
<
h2
>
Home
</
h2
>
<
p
>
Welcome to the homepage of my simple website.Here you'll find
various sections about me and the services I offer.
</
p
>
</
div
>
<
d
ivid=
"about"
class
=
"content"
>
<
h2
>
About
</
h2
>
<
p
>
This website is a basic demonstration of
HTML and CSS. It includes
a navigation bar, styled content sections, and a footer.
</
p
>
</
div
>
<
d
ivid=
"services"
class =
"content"
>
<
h2
>
Services
</
h2
>
<
p
>
I offer web development services, including
creating responsive and
user-friendly websites.
</
p
>
</
div
>
<
div
id=
"contact"
class
=
"content"
>
<
h2
>
Contact
</
h2
>
<
p
>
Feel free to reach out to me at<
a
href
=
"mailto:[email protected]" >
e
[email protected]
</
a
>
.
<
/
p
>
</
div
>
<
f
ooter >
<
p
>
©
2025 My Simple Website. All rights
reserved.
</
p
>
</
footer
>
</
body
>
</
html
>
OUTPUT: