Posts

HTML Basic Text Tags To Make a Webpage

 These tags are used to write text in a webpage: Paragraph Tag (<p> </p>): This tag is used to write simple sentences or paragraphs on your webpage. Italic Tag (<i> </i>): This tag is used to transform the selected text into italic. Underline Tag ( <u> </u> ) : This tag is used to underline the selected text. Bold Tag ( <b> </b> ) : This tag is used to bold the selected text. Emphasize Tag ( <em> </em> ) : This tag is used to emphasize the selected text but with italic mode. Strong Tag ( <strong> </strong> ) : This tag is used to emphasize the selected text but with bold mode. Smaller Tag ( <small> </small> ) : This tag is used to make a text size smaller as compare to normal size, like footnotes. B ig Tag ( <big> </big> ) : This tag is used to make a text size bigger as compare to normal size. Headings Tag  ( <h1> </h1> ) : This tag is used to give headings to paragrap...

Top 10 Necessary Linux Commands

pwd   ( print working directory ) : To Print Your Current Working Path Or Directory. ls ( list ) : To Show List Of Files In Your Working Directory. ls -all ( list all ) : To Show List Of All Hidden Files In Your Working Directory. cd ( change directory ) : To Change Or Move Toward Other Directory. cd .. ( change directory back ) : To Move Back From a Directory. cp ( copy ) : To Copy a File From Your System. rm ( remove ) : To Remove  Or Delete a File From Your System. clear   (clear ) : To Clear Your Screen. adduser " username " ( adduser username ) : To Add a User With Paasword Names And Other Informations. useradd " username " ( useradd username ) : To Add a User Without Password Names And Other Informations .