Untitled

mail@pastecode.io avatarunknown
plain_text
2 months ago
5.2 kB
2
Indexable
Never
<!DOCTYPE html>
<html>
    <head>
        <title>Text Styles Practice</title>
     
        <link rel="stylesheet" href="textstyles.css ">
    </head>
    <body>

        <p class="Css-exercises">
            Exercises 
        </p>
        
        <p class="players">
            2.5 M players &#183; 6 months ago
        </p>
        
        <p class="Jeff">
            Jeff Jerson Alejanderson &#10003; 
        </p>
        
        <p class="Css-answers">
            <br>
            We have gathered a variety of CSS exercises (with answers) for each
            CSS Chapter
        </p>
        
        <p class="hint">
            <br>
            Try to solve an exercise by editing some code. Get a "hint" 
            if you're stuck, or show the answer to see what you've done wrong. 
        </p>
        
        <p class="Count">
            Count your score
        </p>
        
        <p class="your-score">
            You will get 1 point for each correct answer.
             Your score and total score will always be displayed.
        </p>
        
        <p class="start-css">
           Start CSS Exercises  
           <br>
           <br>
           <span class=
           "Goodluck"> Good luck!
        </span>
           <br>
           <br>
           
           <button>
            <a class="button2" href=
            "https://www.w3schools.com/css/exercise.asp"target="_blank" class="Start">
             Start CSS Exercises</span>  &gt; </a>
            </button>
        </p>
           
        <p class="link">
            If you don't know CSS, we suggest that you read our
             <a class="scratch" href="https://www.w3schools.com/css/default.asp"target="_blank">
                CSS Tutorial
            </a> from scratch.
        </p>
 </body>
 </html>



.css-exercises{
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 40px;
    font-weight: bold;   
    margin-bottom: 3px;
      }
      .css-answers{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    font-style: none;
    margin-top: 18px;
    margin-inline-end: 0px;
    margin-inline-start: 0px;
    width: 722.674px
}
.hint{
font-family: Verdana, Geneva, Tahoma, sans-serif    ;
font-size: 15px;
font-style: none;
width: 700px;
line-height: 22.5px;  
}
.count{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
   font-weight: bold;
    font-size: 28px;
}
.your-score{
    font-style: none;
    font-family: Arial;
    font-size: 15px ;
}
.start-css{
    font-family: Verdana, Geneva, Tahoma, sans-serif,;
    font-size: 28px;
    font-weight: bold;   
    background-color: rgb(40, 42, 53);
    box-sizing: border-box;
    color:rgb(255, 255, 255);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    line-height: 22.5px;
    margin-top: 16px;
    padding-bottom: 25px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 15px;
    width:  650px;
    margin-bottom: 0px;

}
button{
background-color: rgb(4, 170, 109);
border-bottom-color: rgb(4, 170, 109);
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-style: solid;
border-bottom-width: 0.666667px;
border-image-outset: 0;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgb(4, 170, 109);
border-left-style: solid;
border-left-width: 0.666667px;
border-right-color: rgb(4, 170, 109);
border-right-style: solid;
border-right-width: 0.666667px;
border-top-color: rgb(4, 170, 109);
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-top-style: solid;
border-top-width: 0.666667px;
box-sizing: border-box;
color: rgb(255, 255, 255);
cursor: pointer;
display: block;
font-family: "Source Sans Pro", sans-serif;
font-size: 18px;
height: 44.3333px;
line-height: 27px;
overflow-x: hidden;
overflow-y: hidden;
padding-bottom: 8px;
padding-left: 19px;
padding-right: 19px;
padding-top: 8px;
text-align: center;
text-decoration-color: rgb(255, 255, 255);
text-decoration-line: none;
text-decoration-style: solid;
text-decoration: none;
text-align:center;
margin-top: 7px;
margin-bottom:0;

}
button:hover{
opacity: 0.80;
box-shadow: 2px 2px 2px black
}
button:active{
opacity: 0.5;
}
.players{
color: rgb(96, 96, 96);
margin-top: 0px;
margin-bottom: 20px;
font-size: 12px;
}

.Jeff{
font-family: Arial;
color: rgb(96, 96, 96);
font-size: 12px;
margin-top: 10px;
margin-bottom: 0px;
}
.link{
margin-top: 40px;
color: black; 
background-color: rgb(255, 255, 204);  
padding-top: 16px;
padding-bottom: 16px;
padding-left: 32px;
padding-right: 32px;
margin-left: -32px;
}
.span{
font-size:15px;
}
.goodluck{
font-size: 16px;
}
.button2{
text-decoration: none;
color:white ;
}
.scratch{
text-decoration: none;
color: black;
font-weight: bold ;
}
.scratch:hover{
text-decoration: underline;
color: green;
}