Posts

Showing posts from February, 2022

Table

Image
Index HTML Table Html Table Tags Width and Border Cell padding Cell spacing BGCOLOR COLSPAN and ROWSPAN HTML Table An HTML <table> tags are used to create different table in our web pages. Each table row is defined with the <tr> tag. A table header is defined with the <th> tag. By default, table headings are bold and centered. A table data/cell is defined with the <td> tag. Html Table Tags Tag Description <table> Displays a table <th> Represents a header cell in a table <tr> ...

Adding Graphics to HTML Documents

Image
Index Graphics to HTML Img in HTML Img Attributes Border Attribute Width and Height Attribute Aligh Attribute Alt Attribute Graphics to HTML In the beginning, graphics was not supported by the web pages only texts are used. But later on images and other types of multimedia files are embedded with web pages. Img in HTML The graphics are embedded in a HTML pages using a simple tag which is represented by <IMG>. We can also embed the images inside other elements such as anchors. When embedded inside an anchor, then the user left clicks on the image, they will go to the designated link (rather, their browser will load a file from the designated link). The <IMG> element has no ending tag. IMG Attributes ...

Types of Lists

Image
Index List Unordered List Ordered List Definition List List In HTML, we can give numbers, unnumbered, and lists to the different text using simple tags. We can also use nested lists with a list. HTML editor automatically takes the space between the bullet or list number in a text, we do not need to mention it. Neither (as yet) do we have control over what type of bullet will be used as each browser is different. Unordered lists <ul> tag is used to Unordered any list followed by the actual list items, which are marked with the <li> tag. The list is ended with the ending tag </ul> The CSS list-style-type property is used to define the style of the list item marker. It can have one of the following values: disc: - Sets the list item marker to a bullet (default) ...

Basic Formatting Tags

Image
Index HTML Basic Tags Text Styles Other Text Effects Spacing HTML Color Coding HTML Basic Tags Tag Description <! DOCTYPE&mldr;> Defines the document type <html> Defines an HTML document <head> Contains metadata/information for the document <title> Defines a title for the document <body> Defines the document's body <h1> to <h6...

Introduction to HTML

Image
Index Web Server Web Client/Browser Hyper Text Markup Language - HTML HTML Tags Types of Tags in HTML (Paired and Singular tags) Commonly used HTML Commands Title Footer Text Formatting Web Server Web server is dedicated computers that uses HTTP to serve web pages. the web server has an IP address and a domain name. By entering URL https:www.mk7college.com/index.html in the browser, it requests to the webserver having a domain name, "mk7college.com". The server in response fetches the page named index.html to the browser. Any computer can act as a web server after installing server software on it There are many web server software, like public domain software and commercial packages. Web server working The web server responds to the client's re...