hello slave i am your master
Today we are going to be teaching you Part 1 of HTMLFD.
- What is HTML and how do we use it?
HTML is a programming language used for websites along with CSS and JQuery. Its name means HyperText Markup Language. It uses tags to define certain objects. It has a few versions, more information here:
https://en.wikipedia.org/wiki/HTML#History - What are tags?
Tags are the building blocks you use to display certain objects. An example tag would be: …. As you might of noticed, there are two tags. One without a slash and one with a slash. The former is called a opening tag. It is used to open a tag so you can define objects in it. The latter is called a closing tag. It is used to close the tag so you can finish defining objects. We will show the most important tags for you website in the next part.
sorry no more html for you - What is CSS?
CSS is a programing language for making your HTML page less dull. Its name means Cascading Style Sheets. CSS uses selectors to change how a certain element looks like. It can be applied through a separate file or it can be applied manually. Example:
- What is JQuery?
JQuery is a JavaScript library used to simplify the use of JavaScript inside a webpage. It encourages developers to separate JavaScript code from HTML code. jQuery has two usage styles:
-
Via the $ function, which is a factory method for the jQuery object. These functions, often called commands, are chainable as they all return jQuery objects.
-
Via $.-prefixed functions. These are utility functions, which do not act upon the jQuery object directly.
Access to and manipulation of multiple DOM nodes in jQuery typically begins with calling the $ function with a CSS selector string. This returns a jQuery object referencing all the matching elements in the HTML page. $(“div.test”), for example, returns a jQuery object with all the div elements of class test. This node set can be manipulated by calling methods on the returned jQuery object or on the nodes themselves.
That’s it for today. Cya!
Link to Part 2
Link to Part 3