0% found this document useful (0 votes)
3 views

Css

Uploaded by

sumukhanayak025
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Css

Uploaded by

sumukhanayak025
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

body {

font-family: Arial, sans-serif;


margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f4f4f4;
}

header {
background-color: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}

nav ul {
list-style: none;
padding: 0;
}

nav ul li {
display: inline;
margin: 0 1rem;
}

nav ul li a {
color: #fff;
text-decoration: none;
}
nav ul li a:hover {
color: #fff;
text-decoration: underline;
}

section {
padding: 4rem;
margin: 4rem 0;
}

section#about {
background-color: #e2e2e2;
}
img {
float: left;
border-radius:50%;
}
section#projects {
background-color: #ccc;
}

section#contact {
background-color: #bbb;
}

.project {
margin: 1rem 0;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 1rem 0;
}

footer a {
color: #fff;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}

You might also like