Using your new knowledge, CSS is the first step, Need your assessment 。

html:

Jane Doe

Web Developer

Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean.

A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth.

Contact information


css:
body {
font-family: Arial, Helvetica, sans-serif;
}
body:hover{
color:red;
font-family:cursive;
}

h1 {
color: hotpink;
font-size: 2em;
font-family: Georgia, ‘Times New Roman’, Times, serif;
border-bottom: 10px dotted purple;
}

h2 {
font-size: 1.5em;
font-style:Italic;
}

.job-title {
color: #999999;
font-weight: bold;
}

a:link, a:visited {
color: #fb6542;
}

a:hover {
text-decoration: none;
color:green;
}
.box1{
border:5px red solid ;
padding-top:5px;

}
.box1 li #a1{
background-color:#eeeeee;
}
.box1 li #a2{
background-color:#eeeeee;
}

Hi @sound_of_wind and welcome to the community :wave:

Could you please put your code into an online editor as described at the end of the task page: https://developer.mozilla.org/en-US/docs/Learn/CSS/First_steps/Using_your_new_knowledge#assessment_or_further_help.

This makes it much easier for us to assess your work.
Thank you very much and have a nice day! :slightly_smiling_face:

Michael