Author: misamaliraza94
-
What is Cryptocurrency?
Cryptocurrency is a new kind of internet money. You can use it to buy things online, and you can send it instantly to other users anywhere in the world, at very low cost, needing nothing more than a smartphone and an internet connection. Cryptocurrency can be cheaper and more convenient than many existing services like…
-
What you`ll learn
What you’ll learn A simple definition of crypto & what you can do with it How crypto can have value & the concept of sound money The evolution of money & the gold standard A simple explanation of how Bitcoin works
-
HTML Comments
The HTML comments are used to indicate sections of a document or insert notes explaining the code. They help understand the code and increase its readability. The comment tag can also be used for excluding temporary code blocks instead of deleting them. For defining HTML comments we use the <!– … –> tag. Browsers ignore this tag…
-
HTML Colors
There are three ways of how you can change the color of the text in HTML: using Hex color codes, HTML color names or RGB values. Hex Color Codes A hex color code is a hex triplet, which represents three separate values defining the levels of the component colors. It is specified with a hexadecimal…
-
HTML Lists
In HTML, there are three types of lists: unordered, ordered and description lists. Each of them is defined using different tags. Let’s have a look. HTML Unordered Lists We use unordered lists to group items having no numerical order. When changing the order of list items, the meaning will not change. To create an unordered…
-
HTML Links
Websites contain different types of links that take you directly to other pages or allow to navigate to a particular part of the page. The links in HTML are called hyperlinks. They are defined using the <a> tag. Hyperlinks are applied to a phrase, a word, an image or any HTML element. The default color of links in HTML…
-
HTML Tags for Text Formatting
In HTML, a number of elements are used to format text. The formatting tags are divided into two groups: physical tags, that are used to style the text (visual appearance of the text) and logical or semantic tags that add semantic value to the text parts (e. g., inform search engines for which keywords a web page should…
-
HTML Headings
The heading is a title at the head of a page or section of a book. It is very important to have different types of headings to structure the content of the web page. Headings help search engines to understand and index the structure of the web page. Heading Tags There are 6 levels of…
-
HTML Attributes
HTML attributes are used within the opening tag. They provide additional information about HTML elements. An attribute edits the default functionality of an element or offers functionality to specific element types that cannot function properly without them. The attribute has a name, followed by the equals sign(=) and a value placed inside the quotation marks(“”). Syntax…
-
HTML Basic Tags
Understanding basic HTML tags is important while learning HTML. Here are the HTML elements that are used more frequently than others. They are: the heading <h1>-<h6> tags, the <p> tag, the <img /> tag, the <a> tag, HTML documents All HTML documents must start with a declaration which specifies the document type: <!DOCTYPE html>. The HTML document begins with <html> and ends with </html>. The main…