Tuesday, 7 July 2020

Through HTML We use list and table
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>table and lists</title>
</head>

<body>
    <!-- our body list begin here -->
    <ul type="circle">
        <li>this is first item of my unordered list</li>
        <li>this is first item of my unordered list</li>
        <ul>another one</ul>
        <ul>another second</ul>
        <li>this is first item of my unordered list</li>
    </ul>
    <ol type="I">
        <li>this is first item of my ordered list</li>
        <li>this is first item of my ordered list</li>
        <li>this is first item of my ordered list</li>
    </ol>
    <!-- our tables begin here -->
    <h3>HTMAL TABLE</h3>
    <table>
        <!-- our thead begin here -->
        <thead>
            <th>Name</th>
            <th>Employee id</th>
            <th>Employee Role</th>
        </thead>
        <!-- our body begin here -->
        <tbody>
            <tr>
                <td> Mr full stop </td>
                <td> 534 </td>
                <td> software dev </td>
            <tr>
                <td> Mr dynmo </td>
                <td>3444 </td>
                <td> android dev </td>
            </tr>

            <tr>
                <td> Mr bholua </td>
                <td>3466 </td>
                <td> computer expert </td>
            </tr>
        </tbody>
    </table>
</body>


</html>
ADDING INTERNAL OR EXTERNAL WEBSITE through
HTML

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>link and images</title>
</head>

<body>
  type (a) then enter then open following tab then add any website
  and we use target.... to open my adding website in new tab or pages
  and we use <br> to those website we add on that web show one by one in a row
  and we add any internal website type (a) then enter and slash and add website name
  <a href="https://google.com" target=" _blank">Go to google</a><br>
  <a href="https://facebook.com" target=" _blank">Go to facebook</a><br>
  <a href="https://twitter.com" target=" _blank"> Go to twitter.com</a><br>
  <!-- image is not present hence alt text is shown -->
  we use website for image is
  <source class="unsplash com">
  <img src="mr dot.jpg" alt=" error images">
  <img src="https://source.unsplash.com/user/erondu/1600x900" alt="remote image">
</body>

</html>