Posts

HTML Create List and Order type

  Create List and Order type Here we will learn how to create the list as you can see below here are some new tags which I added to create the list for anything but I made a list of fruits as you can see. So the tags to create the lists are li and to add the numbering I add the tag order list type(ol type) you can change the order type for example if you will write a inside this tag then you list numbering will be like a b c etc So In this way you can use these tags <html> <head> <title> LIST of Fruits </title> <body> <b> Creating list </b> <br> <p> This is the list of fruits </p> <ol type =" 1 "> <li> banana </li> <li> apple </li> <li> mango </li> </body> </html>

Code snippet for blogger or Wordpress

  Code snippet for blogger or WordPress  Here you can see the code snippet, used to write the code and the interference for this code snippet is like the same as below. So you can use this by simply turn the editor from text format to code format after turning this you will paste the same code as below and again now you can turn the code format to text format and now you can write the code inside it. <pre style="background-color: #eeeeee; border: 1px dashed rgb(153, 153, 153); color: black; font-family: &quot;Andale Mono&quot;, &quot;Lucida Console&quot;, Monaco, fixed, monospace; font-size: 12px; line-height: 14px; overflow: auto; padding: 5px; width: 100%;"> <code style="color: black; overflow-wrap: normal; word-wrap: normal;"> <your code="" here=""> </your></code> </pre>

HTML Change font size

  Change font size Here I will change my font size below easily as you can see a new tag here below in the code which is to change the font size and the tag name is itself <font size="Desired size"> after opening the tag you should write the text which you want to increase the size after this you can close the tag now. You are able to change the size in html. <html> <head> <title> Change font size </title> </head> <body> i am going to increase the font size in <font size =" 8 "> HTML </font> <br> We had changed the font size </body> </html>

HTML Break line and change font style

  Break line and Change Font style Here I am changing my font style as you can see here below there are some new tags below one for breaking the line and other for changing the font style so to break the line there is <br> and to change the font style here is <i>.  <html> <head> <title> Change font style </title> </head> <body> i am going to change the font style <br> <b> In HTML </b> <br> <i> FONT STYLE </i> </body> </html>

HTML Basic Code

  HTML Basics First of all I will tell you the best compiler to use the html. Notepad is good but for any huge projects you need a compiler. So you can use bracket as a compiler for html which is available free online. You can download this from google easily by writing this. Bracket software free download. Here we will learn How to code by using html language. So in the code which is given below I add some tags which are necessary to make a html page. So the first tag is html which defines the language by using this tag our browser can find the format for our language after this there is a head tag which is also an important part for html here we define the heading or any CSS or Classes etc. But below I define the title of the page which is Abdul Wahab Raza. After closing the head tag I am defining the body part which don't need any definition.  By practice this code you can understand better.  <HTML> <Head> <Title> Abdul Wahab Raza ...

Advanced Airline Management system using data structures and OOP in c++

Image
  Information about Management system: Introduction: This project is about the airline management system and now I will make a simple introduction to this project which is that what is an airline management system to talk about this firstly I will tell that what is management system so management system is something like a program which manage the record of the company or organization. It helps to calculate, manage, or make record the data by different operations. So, I will make a management system of airline tickets that if a customer reserve a ticket than the data of this customer will store inside the program and in this way, we can make a record and this record can help us to check that which customer reserve the ticket from our organization or company and this can save a lot of the time of us. And the main point is the whole project is based on the binary search tree (BST) because is algorithm faster than most of the algorithms. And how this algorithm works and the an...