INTERMEDIATE: C241

STYLING MY WEB PORTFOLIO

Let's revise!

<html>

<head>
<title> Main Page</title>
</head>

<p> This is my first web  page!</p>


</html>
<html>
  <head>
    <title>SuperPage</title>
  </head>
  <body>
    
    <p style="color:blue;">
      Here is the text...
    </p>
  </body>
</html>
<html>
  <head>
    <title>SuperPage</title>
    <style>
      p{
        color:blue;
      }
    </style>
  </head>
  <body>
    
    <p>
      Here is the text...
    </p>
  </body>
</html>
<html>
  <head>
    <title>SuperPage</title>
    <style>
      <link rel="stylesheet" href="/style.css" />
    </style>
  </head>
  <body>
    
    <p>
      Here is the text...
    </p>
  </body>
</html>
  p{
        color:blue;
   }

Option-A

Option-B

Option-C

Output-1

Output-2

<form action="https://sucess.html">
  Username:<br>
  <input type="text" name="username">
  <br>
  Email id:<br>
  <input type="text" name="email_id">
  <br><br>
  <button type="reset" >Submit</button>
</form>
<a href="http://google.com/" target=?>Visit google!</a> 

This was

fun! Let's style

your web portfolio!

INT-C241

By int whitehatjrclass

INT-C241

  • 105