Monday, January 14, 2019

HTML Class 2 #.



HTML Class 2 #.

Asslam o Alaikum dear Friends. A complete course with short and easy classes. so let's start your HTML Class.

HTML Class 2 #.
In your second class i tell you how to you style your text in a page . Styling the text like Bold Italic Underline Strike etc.


CODE

<!DOCTYPE html>
 <html>
 <head>
<title>Untitled</title>
<meta charset="UTF-8"/>
<link rel="stylesheet" href="" type="text/css"/>
 </head>
<body>
<b>this text is bold<b>
<br>
<i>this text is italic<i>
<br>
<u>this text is underline<u>

 </body>
 </html>

OUTPUT


this text is bold
this text is italic
this text is underline

No comments:

Post a Comment

Recent added

TypeScript Class 5

Common Syntax Errors in TypeScript and How to Avoid Them Syntax errors are among the most common issues developers encounter when writing Ty...