/*Add CSS styling*/
body{
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header{
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
font-size: 25px;
letter-spacing: 2px;
text-transform: uppercase;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
background-color: #ddd;
padding: 10px 20px;
}
ul{
display: flex;
}
li{
margin-right: 20px;
}
main{
display: flex;
justify-content: center;
align-items: center;
min-height: 600px;
background-color: #ccc;
}
h1{
font-size: 50px;
margin-bottom: 50px;
}
footer{
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
I'm a web developer based in New York City. I am passionate about creating beautiful and functional websites that deliver excellent user experiences.
© 2021 My Personal Website | All rights reserved.
This is a basic code for a personal website with a header, navigation bar, main content, and footer. The header is displayed at the top of the page and includes the title and a welcome message. The navigation bar contains links to different sections of the website including home, about, services, and contact. The main content section includes an introduction and personal information about the website owner. The footer includes copyright information. Additionally, CSS styling has been added to give the website a more polished look.