You are on page 1of 6

Programmingknowledge.blogspot.

com HTML
---------------------------------------------------------------------------------------------------------------------
HTML
Text Manipulation Text Manipulation
Font format
Webpage

Name Definition Syntax


Bold Font Font <b> your text </b>

Underline Font အခါ <u> your text </u>


Font

Italics Font ၤFont <i> your text </i>

Align Center text page <center> your text </center>


Text

Line Break Text <br>

<html>
<head><title>My page</title></head>
<body background="test.jpg">
<center><b><u> STUDENTS</u></b></center>
<i>Name <br>
Age <br>
Class <br>
</i>
</body>
</html>
result

BG STUDENTS
Name,Age Class Result
….။
------------------------------------------------------------------------------------------------------------------------------------------
…။
Programmingknowledge.blogspot.com HTML
---------------------------------------------------------------------------------------------------------------------
Name Definition Syntax
Horizontal line horizontal line <hr> (or)
<hr width= “your values”
size= “your values”>
Order list List 1,2,.. <ol>
<li> list1 </li>
<li> list…</li>
</ol>
Un Order list List Bullets <ul>
<li> list1 </li>
<li> list...</li>
</ul>

<html>
<head><title>Education</title></head>
<body bgcolor="skyblue">
<center><b><u>Class A</u></b></center>
<ul> <li>Name </li>
<li>Age </li>
<li>Address </li>
</ul>
<hr width=60%>
<center><b><u>Class B</u></b></center>
<ol> <li>Name </li>
<li> Age </li>
<li>Address </li>
</ol>
<hr>
</body>
</html>
result

<hr> tag အ အခါ <hr>


<hr width=60%> size <hr width= “60%” size= “6” >

------------------------------------------------------------------------------------------------------------------------------------------
…။
Programmingknowledge.blogspot.com HTML
---------------------------------------------------------------------------------------------------------------------
Name Definition Syntax
<h> tag <h> tag <h1> your text </h1>
(or) ……………….
Header <h1> to ……………….
<h6> <h7> <h1> ……………….
<h6> your text </h6>

&nbsp; space &nbsp;


(or)
Space &nbsp; က space

Div Div html Align Right,Center, Left <div align=right> Text </div>
<div align=center>Text </div>
Css <div align=left> Text </div>

<html>
<head><title>My Page</title></head>
<body background= “test.jpeg”>
<h1>Education</h1>
<div align=left>Education in the largest sense is any act or experience that has a formative effect on the
mind, chracter or physical ability of an individual. In its technical sense, education is the process by
which society deliberately transmits its accumulated knowledge, skills and values from one generation to
another.</div>
<h2>Academy</h2>
<h3>University</h3>
<h4>College</h4>
<h5>Hight &nbsp; &nbsp; &nbsp; School</h5>
<h6>Basic School</h6>
<div align=right>Technology is an increasingly influential factor in education. Computers and mobile
phones are used in developed countries both to complement established education practices and develop
new ways of learning such as online education (a type of distance education). </div>
</body>
</html>
result

------------------------------------------------------------------------------------------------------------------------------------------
…။
Programmingknowledge.blogspot.com HTML
---------------------------------------------------------------------------------------------------------------------

<h> tag 1 to 6
<div align=left/right/center> align
Hight School hight school
space &nbsp; space
header
div text align
Name Definition Syntax
Pre Text <pre> your text </pre>
formated
အခါ
Font Font color, size, font face <Font> your text </Font>

<font color=value>Your Text


Syntax value </font>
color, size font
<font color=value size= value>
face your font Your Text </font>
Your Text
<font face= “your font” color =
value size = value> Your Text
</font>

<html>
<head><title>Education</title></head>

------------------------------------------------------------------------------------------------------------------------------------------
…။
Programmingknowledge.blogspot.com HTML
---------------------------------------------------------------------------------------------------------------------
<body bgcolor=skyblue>
<center><b><u><font color=green>Education</font></center></b></u>
<b><u><font color=blue size=3> Student Group </font></b></u>
<pre>
Class Quantity
A 50
B 41
</pre>
<font face= “Zawgyi-One” color=white>E-learning is essentially the computer and network-enabled
transfer of skills and knowledge. E-learning applications and processes include Web-based learning,
computer-based learning, virtual classroom opportunities and digital collaboration.</font>
</body>
</html>
Result

Result <Pre> tag


Font color, size , face
color, size ,face
Name Definition Syntax
Striked Strike tag Hay Man <strike> your text </strike>
Font

Sub <sub> tag base <sub> base text </sub>


Script Eg. H2O
Font
Super <sup> tag power text Power <sup> power text </sup>
Script Eg. X2
Font

<html>
<head><title>My Page</title></head>
<body bgcolor=skyblue>
Hay... H<sub>2</sub>O Man <br>
<strike>Solve the question:</strike><br>
X=2, Y=?<br>
Y= x<sup>2<sup>

------------------------------------------------------------------------------------------------------------------------------------------
…။
Programmingknowledge.blogspot.com HTML
---------------------------------------------------------------------------------------------------------------------
</body>
</html>
Result

Power Base

Part_2
HTML

Tay Zar Lin


Koyinmaung007@gmail.com
Programmingknowledge.blogspot.com

------------------------------------------------------------------------------------------------------------------------------------------
…။

You might also like