OneCompiler

Assignment 1.4: Font Styles and Bold, Italics, Underline

153
<!DOCTYPE html>
<html>
    <head>
        <title> 1.4 HTML: Font Styles and Bold/Italics/Underline </title>
    </head>
    <body>
    
        <!-- Part A: Color your text to green and red-->
        <p> Your green text is here. </p>
        <p> Your red text is here. </p>
        <p> Your blue text is here. </p>

        <!-- Part B: Change the sizes of your text -->
        <p> This is font size 200%. </p>
        <p> This is font size 20pt. </p>
    
        <!-- Part C: Add Verdana to your text -->
        <p> This text will be displayed using Verdana. </p>
    
        <!-- Part D: Add bold, italics, underline to your text -->
        <> Your bold text goes here. </>
        <> Your italics text goes here. </>
        <> Your underlined text goes here. </>
    	
  </body>
  
<!-- Do not remove following lines. They're used to test. -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://sites.webjam.org/grader/assignment1.4.js"></script>
</html>