Get up to 80 % extra points for free! More info:

Discussion – Lesson 8 - The class selector and styling text in CSS

Back

 

Comments
Avatar
Ardouin Best Saint Jean:7/7/2017 10:42

<meta charset="utf-8" />
<title>Who am i</title>
<link rel="stylesheet" href="style.css" type="text/css" />

<head>

</head>
<body>
<h1> A short bio</h1>
<p> A little bit of kind,<br> bad temper ,</br> nice you know how people can be , like up and down</p>

<p class="center">
<img src="images/AR­DOUIN.jpg" alt="myself" />
</p>

<table border="1">

<thead>

<tr>
<td>Funny</td>
<td>Anger</td>
<td>Hatred</td>

</tr>
</thead>
<tbody>

<tr>
<td>wishing that every moment should stay like that</td>
<td>the worst part we don't like, but have to when it comes</td>
<td>the reverse of love, can't never beautifull</td>

</tr>
</tbody>

</table>
<h2>what are you like</h2>
<ul>
<li>Black, a little lighter</li>
<li>a little bit small</li>
<li>undetermi­ned</li>

</ul>

<h3>About me</h3>

<p>you can <a href="contact­.html">contact </a>me at my email address</p>

<p> you can write me a letter to this pages <a href="http://­www.asj.com">AS­J</a></p>

<p><img src="images/ja­va.png" alt="Logo"></p>
<p>thanks for visiting me , i learned all of this at the <mark>ICT.soci­al</mark></p>
</body>

</html>

 
Reply
7/7/2017 10:42
Avatar
IT Man
Member
Avatar
Replies to Ardouin Best Saint Jean
IT Man:7/8/2017 3:38

Hello,
whole body looks okay. However, the start of the document is bad. All informations about the page should be in head. Then there is missing doctype and starting element of html.
So it should look like this:

<!DOCTYPE html>
<hhtml lang="en">
        <head>
                <meta charset="utf-8" />
                <title>Who am i</title>
                <link rel="stylesheet" href="style.css" type="text/css" />
        </head>
        <body>
                <!-- content -->
        </body>
</html>
 
Reply
7/8/2017 3:38
Avatar
 
Reply
8/22/2017 23:13
To maintain the quality of discussion, we only allow registered members to comment. Sign in. If you're new, Sign up, it's free.

3 messages from 3 displayed.