answer action

Can’t find an answer?

Make use of a qualified tutor to get the answer

xLeitix
0
Q:

html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML basics</title>
    </head>
    <body>


    </body>
</html>
11

<body>


 <h1>My First Heading</h1>
<p>My first paragraph.</p>


</body>
 
3
<table style="width:100%">
  <tr>
    <th>Firstname</th>
    <th>Lastname</th>
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td>
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td>
    <td>94</td>
  </tr>
</table>
3

 <a href="https://www.w3schools.com/"
target="_blank">Visit W3Schools!</a>
 
3

<!DOCTYPE html>
<html>
<head>
<style>

 body {background-color: powderblue;}
h1   {color: blue;}
p    {color: red;}

</style>
</head>
<body>

<h1>This is a 
 heading</h1>
<p>This is a paragraph.</p>

</body>
</html> 
3

<p>This is a paragraph.</p>

<p>This is another paragraph.</p>
 
1

  <h1 style="color:Tomato;">Hello 
  World</h1>
<p style="color:DodgerBlue;">Lorem 
  ipsum...</p>
<p style="color:MediumSeaGreen;">Ut wisi 
  enim...</p> 
2

 <pre>
  My Bonnie lies over the ocean.


  My Bonnie lies over the sea.

  My Bonnie lies over the 
ocean.

  Oh, bring back my Bonnie to me.
</pre> 
2

<!DOCTYPE html>

<html>
<head>
<title>Page Title</title>

</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>


</body>
</html>
 
0

 <h1>This is heading 1</h1>
<p>This is some text.</p>
<hr>
<h2>This is heading 2</h2>
<p>This is some other text.</p>
<hr>
 
2

New to Communities?

Join the community