This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

How To make a custom website using HTML and CSS

 How To make a custom website using HTML and CSSHere is the code of this video you can copy and paste it on your code editor or notepad.Here Is The CodeHTML CODEhtml lang="en"><head>    <meta charset="UTF-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>Custom Website1</title>  ...

How make a about us page using HTML AND CSS

 How make a about us page using HTML AND CSSHere is the code of this video you can copy and paste it on your code editor or notepad.Here Is The CodeHTML<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <title>About Us</title>    <link rel="stylesheet" href="style.css"></head><body> ...

How To make a Loader Using HTML

 How To make a Loader Using HTMLHere is the code of this video you can copy and paste it on your code editor or notepad.Here Is The Code<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><style>.loader {  border: 16px solid #f3f3f3;  border-radius: 50%;  border-top: 16px solid #3498db;  width: 120px;  height: 120px;  -webkit-animation: spin 2s linear infinite; /* Safari */  animation: spin 2s linear infinite;}/* Safari */@-webkit-keyframes...

Grade 11 Ict HTML Lesson Under 45 minutes

 Grade 11 Ict HTML Lesson Under 45 minutesHere is the code of this video you can copy and paste it on your code editor or notepad.Here Is The Code<html><head><title> Sri Lanka </title></head><body><h2><center><font face="arial" color="blue"> SRI LANKA </font></center></h2> <center><img src=" C:\Users\Pictures\srilanka.jpg" ></center><center><font face="arial" size="2">Sri Lankan Enviroment</font></center><p><center>...

How to make a Registration Form Using HTML

How to make a registration form using HTMLHere is the code of this video you can copy and paste it on your code editor or notepad.Here Is The Code<!DOCTYPE html><html>    <head>        <title>Registration Form</title>    </head>    <body>        <form>            <table>                <tr>                 ...