Posts

Chapter 1.3 Html Basic

Image
Our Previous Lecture Link : https://webeducationsystem.blogspot.com/2020/10/chapter-12-html5-editors.html Copy the Link and Paste it on Browser.   In this Blog we will show some basic HTML examples. Don't worry if we use tags you have not learned about yet. HTML Documents All HTML documents must start with a document type declaration:  <!DOCTYPE html> . The HTML document itself begins with  <html>  and ends with  </html> . The visible part of the HTML document is between  <body>  and  </body> . The <!DOCTYPE> Declaration The  <!DOCTYPE>  declaration represents the document type, and helps browsers to display web pages correctly. It must only appear once, at the top of the page (before any HTML tags). The  <!DOCTYPE>  declaration is not case sensitive. The  <!DOCTYPE>  declaration for HTML5 is: HTML Headings HTML headings are defined with the  <h1>  ...

Chapter 1.2 Html5 Editors

Image
Our Previous Lecture Link :   https://webeducationsystem.blogspot.com/2020/10/chapter-11-full-introduction-to-html-5.html Copy the Link and Paste it on Browser.   A simple text editor is all you need to learn HTML. Learn HTML Using Notepad or TextEdit Web pages can be created and modified by using professional HTML editors. However, for learning HTML we recommend a simple text editor like Notepad (PC) or TextEdit (Mac). We believe in that using a simple text editor is a good way to learn HTML. Follow the steps below to create your first web page with Notepad or TextEdit. Step 1: Open Notepad (PC) Windows 8 or later: Open the  Start Screen  (the window symbol at the bottom left on your screen). Type  Notepad . Windows 7 or earlier: Open  Start  >  Programs >   Accessories >   Notepad Step 1: Open TextEdit (Mac) Open  Finder > Applications > TextEdit Also change some preferences to get the application to save files...

Chapter : 1.1 Full Introduction to Html 5

Image
Our First Lecture Link : https://webeducationsystem.blogspot.com/2020/10/introduction-to-html-css-and-javascript.html Copy the Link and Paste it on Browser.   HTML is the standard markup language for creating Web pages. What is HTML? HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes 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 link", etc. A Simple HTML Document Example Explained The  <!DOCTYPE html>  declaration defines that this document is an HTML5 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 for the HTML page (which is shown in the browser's ...

Chapter : 1 Introduction of Html and CSS

Image
Learning HTML and CSS is hard, but it doesn’t have to be. This tutorial is one of the friendliest HTML and CSS guides on the Internet. We’ll walk you through everything from selecting a good text editor (which is surprisingly important) to building full-fledged, professional-quality web pages from scratch. We designed  HTML & CSS Is Hard  to be the only introduction to HTML and CSS that you’ll ever need. If you put in the effort to read every section and write every code snippet, this tutorial has the potential to replace hundreds or even thousand of dollars worth of online courses and live training. Our goal is to make it as easy as possible for complete beginners to become professional web developers, so if you’ve never written a line of HTML or CSS, but you’re contemplating a career shift, grab a cup of coffee, take a seat, and let’s get to work. HyperText Markup Language (HTML), Cascading Style Sheets (CSS), and JavaScript are the languages that run the web. They’re ve...