Sunday 7 March 2021

HTML and its Basics Tips and Trips

 

HTML Tips and Tricks 

HTML 

Basics Tags and ShortCuts in HTML

p - paragraphs
h1 - headlines
<br>- line space 
<hr>-horizontal lines 
Lorem emmet for 24 dummy words 
b- bold
i- italic
strongs - words bold 
em - emphasizeds the words 
link for linking 
scripts for js linkings 
<!
ctrl+/
ctrl+enter for new line 
ctrl +D for copy down 
ctrl + U up
ctrl +K for delete 
meta name="contents"  

Inline and Block Elements

Inline and Block Element
Inline means in one block
block means whole line 

Segmantic Elements

Segmantic elemnt 
it tells the actual website 
workings pattern 

No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...