Hi, my name is John Doe and I am a freelance web developer. I have been working in this field for over 5 years and I have a passion for creating beautiful and functional websites.
When I'm not coding, you can find me exploring the great outdoors or spending time with my family.
© 2021 My Webpage. All rights reserved.
body {
font-family: Arial, sans-serif;
margin: 0;
}
header {
background-color: #333;
color: white;
padding: 20px;
}
h1 {
margin: 0;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
margin-right: 20px;
}
nav a {
color: white;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
main {
margin: 20px;
}
section {
margin-bottom: 40px;
}
h2 {
color: #333;
font-size: 24px;
margin-bottom: 20px;
}
ul {
list-style-type: disc;
margin-left: 20px;
}
form div {
margin-bottom: 20px;
}
label {
display: block;
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
border: 1px solid #ccc;
font-size: 16px;
padding: 10px;
width: 100%;
}
button[type="submit"] {
background-color: #333;
border: none;
color: white;
font-size: 16px;
padding: 10px 20px;
}
button[type="submit"]:hover {
cursor: pointer;
}