CSS Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language like HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript. CSS describes how HTML elements are to be displayed on screen , paper , or in other media. CSS saves a lot of work. It can control the layout of multiple web pages all at once. External style sheet are stored in CSS files. CSS is the language for describing the presentation of Web pages, including colors , layout , and fonts . It allows one to adapt the presentation to different types of devices, such as large screens, small screens, or printers. CSS is independent of HTML and can be used with any XML-based markup language. To know more click below
CONCLUSION This module gave a fundamental understanding of the models that were introduced in the first course of this series, Web Site Planning Models . You will see both models applied throughout this course, as a way of making the complex concepts of Web development concrete. In addition, it is hoped that WebTeam continues to put a human face on the Web development process. THANK YOU
HTML HTML stands for Hyper Text Markup Language , it is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading style sheets and scripting language such as JavaScript. It is used to create electronic documents called pages that displayed on the world wide web. Each page contains a series of connections to other pages called hyperlinks . SOME BASIC HTML TAGS <html>......</html> ___ Opening and closing elements. <head>......</head>____The document head. <title>......</title>_____The page title. <body>.......</body>____The page's content. <h1>......</h1>____The section heading. <p>.....</p>___ A paragraph. <a>....</a>___A link. <img> An image. and much more. To know more click below
Comments
Post a Comment