Posts

Showing posts from December, 2020

Web Development

Image
    Web page A web p age is a specific collection of information provide by a website and displayed to a user in a web browser. A web page can contain huge information including text,graphics,audio,and video and hyperlinks these hyperlinks are the link to other web pages. Collection of linked web pages on a web sever is known as a website. A unique uniform resource locator (URL) is associated with each web page. Static Websites Static websites are built and maintained using static site generators. The static web sites generator fundamentals are very simple and easy. The static website generators take in vital content and designs and output static HTML,CSS ,JavaScript files,etc. The major example of static websites are as follows: Documentation. Developing Cache. Websites presentation. Forms. Newsletter Contents. Disaster page.. Landing page Blogs. Dynamic Web Page A dynamic web page is a web age that displays different content each t

CSS Introduction

Image
  What is CSS? CSS stands for cascading style sheets. CSS describe how HTML elements are o be displayed on screen, paper or in other media . CSS saved a lot of work . It can control the layout of multiple web pages all at once. External style sheets are stored in CSS files. Why use CSS? CSS is used to define styles for your web pages , including the design,layout and variations in display for different devices and screen sizes. E.g:   < !DOCTYPE html > < html > < head > < stye > body {   background-color : light blue ; } h1 {   color : blue ;   text-align : center ; } p {   font-family : red serif ;   font-size : 20px ; } < /stye > </ head > < p >My First CSS Example < p >   < p > >This is a paragraph < p >   < /body > < /html > Result: CSS Syntax The selector pints o he HTML elements you want to style. The d

HTML Introduction

Image
  What is HTML? HTML stands for Hyper text Markup language. HTML is he standard markup language for creating web pages. HTML describe the structure of a web page. HTML consists of a series of elements . HTML elements tell the browser how to display the content. HTML elements label pieces of content such as “this is a heading”,”this is a paragraph”,”this is a ink” ,etc. A simple HTML Document The < !DOCTYPE html > Declaration define that this document is an HTM5 document. The < html > element is the root element of an HTML page. The < head > element contains meta information about the HTML page. The < title > element specifies a title fro the HTML page (which is shown in the brewser’s title bar or in the page’s tab). The < body > element define the document’s body,and is contain for all the visibe contents such as heading,paragraph,images,hyperlinks,tables,lists etc. The < h1 > elements defin