Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
Sunday, 7 March 2021
HTML TUT-7 What Is HTML Entities ?
What Is HTML Entities ?
HTML TUT-6 What Is ID and Classes In HTML ?
What Is IDs and Classes In HTML ?
Id and Classes |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ids and classes</title>
</head>
<body>
<h1>Ids and classes tutorials</h1>
<span id="mainvlogs"></span>
<strong class="blackborder redBG Background">This is a line</strong>
<div class="background blackbackground redbg"></div>
<span class="myclass myclass2 myclass3">frist </span>
<span class="myclass myclass2 myclass3">second</span>
<span class="myclass myclass2 myclass3"></span>
<span class="myclass myclass2 myclass3">fourth</span>
<span class="myclass myclass2 myclass3">fivth</span>
<span class="myclass myclass2 myclass3">sixth</span>
<span class="myclass myclass2 myclass3">seventh</span>
</body>
</html>
HTML TUT-5 How To Identify The Inline And Block Elements In Html(With the help of CSS)
How To Identify The Inline And Block Elements In Html(With the help of CSS)
HTML TUT-4 How To create Forms And inserts Links Tags in it ?
How To Create Forms And Inserts Links Tags In It ?
HTML TUT-3 Creating Lists and Tables In HTML
Creating Lists And Tables In html
HTML TUT-2 How to Add Link and Images
How To Add Links And Images
HTML Tutorials - 1
HTML TUT-1
HTML and its Basics Tips and Trips
HTML Tips and Tricks
Web Development Tutorial-
Subscribe to:
Posts (Atom)
Python if / else
Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...
-
How To Give Beautiful Heights, Widths,Border,Border-Radius and Background In HTML Using CSS ? CSS Design <! DOCTYPE html > < h...
-
Pointer in c program problems #include <stdio.h> int main () { int i = 34 ; int * j = & i ; int ...
-
function and recursion in c programs #include <stdio.h> float average ( int a , int b , int c ); //prototype int main ...