HTML Reading Assignment

1_What is HTML?

Html is hypertext markup language

2_What is HTML used for?

It is used to structure the elements of your page so it does and looks like what you want it to.

3_Why are we learning HTML?

To make basic user friendly interfaces.

4_What is an HTML tag?

Elements are placed within tags with certain functions example:

This will be a

paragraph

5_What is the structure of an HTML tag?

Opening tags: this is where the element and it’s given effect begin <> this is also the element name

Closing tags: this is where the element and it’s effect end, note the forward slash </>

The content is what is between the tags, content is what shows up on the web page

The element is from the first < to the last >

6_What is an attribute?

An attribute is extra information/effect/function that is not to be displayed in the content

There should always be a space between it and the element name.

The attribute name is followed immediately by an equal sign=

The attribute value is wrapped by quotation marks “”

7_What is the anatomy of an HTML document?

Ze anatomy

1_ <!DOCTYPE html> a requisite start to denote the page as html

2_ <html></html> this element is wherein all the page content is placed.so the first and last tags on a page ( excluding doctype)

3_ the head element is where you place content that is not shown on the page such as keywords, page description, languages, fonts, etc

4_ <meta charset=”utf-8”> this element allows your page to handle all character from most written languages.

5_ <title></title> the title element makes up the title of your page, and also appears in the browser tab (which is the name it uses when bookmarked.

6_ <body></body> this element contains all the content the users can see and interact with.

7_ <img> this element embeds an image on the page

<img src=”image/somethingorother.png” alt=”it’s a thing or other”>

src= the path to the stored image

alt= when the image does not load this is displayed or for visually impaired people with screen readers

8_ <h1></h1> down to <h6></h6> headings elements allow you to impart chapter and subchapters, different sections on your page. Up to 6.

9_ <p></p> paragraph element contain paragraphs of text

10_ <ul></ul> unordered list element, in between the two tags different list items are in tags

  • 11_ <ol></ol> ordered list element

    12_ <a></a> link element (a for anchor) add a href= attribute followed by the url to make the content text a working link

    Href: hypertext reference

    So my try at an example

    <!DOCTYPE html>
    
    <html>
    
    <head>
    
    <meta charset=”utf8”>
    
    <title>Profound title</title>
    
    </head>
    
    <body>
    
    <img href=”image/beachwithsunset.png” alt=”sunset beach”>
    
    <h1>The benefits of sand.</h1>
    
    <p>text about sand</p>
    
    <h2>List of benefits</h2>
    
    <ul>
    
    <li>Abrasive</il>
    
    <li>Slightly offensive</li>
    
    <li>Derivative of seashells</li>
    
    <p>For more info visit <a href=”linkadress”>sandyfun</a>
    
    </body>
    
    </html>
    

    sooo apparently it sort of works…

  • 1 Like
    1. What is HTML?
    • HTML (HyperText Markup Language) is the code that is used to structure a web page and its content.
    1. What is HTML used for?
    • HTML is used to structure the elements of your page to a desired outcome.
    1. Why are we learning HTML?
    • Learning HTML is essential for functionality in our frontend.
    1. What is an HTML tag?
    • An HTML tag consists of an open and close. They start and end functionality of the code. p open p/ close . Ex: pIvan on Tech p/ : p = opening tag , p/ = closing tag , Ivan on Tech = content . Opening tag + Closing tag + content = Element.
    1. What is the structure of an HTML tag?
    • p open p/ close . Ex: p Ivan on Tech p/ : p = opening tag , p/ = closing tag , Ivan on Tech = content . Opening tag + Closing tag + content = Element.
    1. What is an attribute?
    • An attribute is extra information about the element that doesn’t appear in the contents.
    1. What is the anatomy of an HTML document?
    • Ex p Ivan on Tech p/ : p = opening tag , p/ = closing tag , Ivan on Tech = content . Opening tag + Closing tag + content = Element.
    1 Like
    1. What is HTML?
      Hypertext Markup Language its a code for web development
    2. What is HTML used for?
      it is used to structure a web page and its content
    3. Why are we learning HTML?
      We need a user interface to interact with the Blockchain, that can be built with HTML
    4. What is an HTML tag?
      it is used for creating an element
    5. What is the structure of an HTML tag?
      < p> something like this < /p>
    6. What is an attribute?
      it extends an element, it can chage its behaviour or provide metadata
    7. What is the anatomy of an HTML document?
      Here’s an example
    <html>
      <head>
        <title> Ivan on Tech Academy </title>
      </head>
      <body>
        <img src="image01">
      </body>
    </html>
    
    1 Like

    1)What is HTML?
    • HTML stands for hypertext markup language. It is the code that you use to make your website.
    2)What is HTML used for?
    • HTML is used to include text, pictures,videos, sounds, and links for your web page.
    3)Why are we learning HTML?
    • To get a basic understanding of how to begin coding. And to eventually build our own websites that we’ll be using for our very own possible blockchain one day :blush:
    4)What is an HTML tag?
    • An HTML tag is what you use to define certain elements of content like a paragraph, image, links, etc.
    5)What is the structure of an HTML tag?
    • You first have the opening tag that is wrapped in opening and closing angle brackets.
    Next, you will have the content.
    After writing your content you’ll want to close it with a closing tag which is an open angle bracket followed by a forward slash before the element name, followed by a closing angle bracket
    All of these wil make what is called the element
    6)What is an attribute?
    • An attribute is something that contains extra information about your element that you don’t want in the actual content. They modify or add meaning to the HTML element.
    7)What is the anatomy of an HTML document?
    • The anatomy of an HTML document is how all of the individual elements are combined to form your entire HTML page.

    1 Like

    Also, can anyone tell me if it’s possible to do this coding course on a smart phone?
    I’m doing the majority of my learning at work whenever I have free time and I don’t have access to a computer.
    I have one at home, but I actually get more done at work (don’t tell my boss :rofl:). It’s a little difficult at home with 2 toddlers in your face all day :dizzy_face:‍:dizzy:

    1 Like
    1. What is HTML?
      Hypertext Markup Language
    2. What is HTML used for?
      It is used to create static websites that only display text, images, etc. It consists of a series of elements which you use to enclose or wrap different parts of the content to make it appear a certain way, or act a certain way.
    3. Why are we learning HTML?
      It is helpful to learn the basics of programming when you are a beginner. Starting with an easy language such as HTML helps you get a taste of how programming languages work and might help when trying to move on to more advanced languages.
    4. What is an HTML tag?
      It is commonly defined as a set of characters constituting a formatted command for a web page. At the core of HTML , tags provide the directions or recipes for the visual content that one sees on the web.
    5. What is the structure of an HTML tag?
      It consists of the name of the element, for example p, wrapped in opening & closing angle brackets (<>). There is an opening tag (

      ) and a closing tag

    6. What is an attribute?
      They contain extra information about the element that you don’t want to appear in the actual content. Special words used inside the opening tag to control the element’s behaviour.
    7. What is the anatomy of an HTML document?
      Doctype, the element, the element, <metacharset=utf8">, the element and the element.
    1 Like

    No, it is not advisable at all to learn coding through a smartphone.

    • What is HTML?
      It is a computer language that defines the structure of the content you want.

    • What is HTML used for?
      It is used to present the content in the web

    • Why are we learning HTML?
      To learn how to present the content we want onto the web

    • What is an HTML tag?
      It is the start point where content starts and stop

    • What is the structure of an HTML tag?

    • What is an attribute?
      extra element of value you want to add to , but will not be seen in the content presented

    • What is the anatomy of an HTML document?

    1. <!DOCTYPE html> — doctype. It is a required preamble.
    2. <html></html> — the html element
    3. the head element
    4. <title></title> —the title element
    5. <body></body> — the body element
    1 Like
    1. HTML is Hyper Text Markup Language, which is used to create the structure of web pages.

    2. Web pages on the internet are constructed as HTML code

    3. We are learning HTML in order to be able to put together a front end web page for the code that we will be developing later in the course.

    4. An HTML tag provides is a pair (usually) of opening and closing delimiters consisting of the name of the tag.

    5. The beginning tag has name, and the corresponding closing tag is prefaced with a slash.

    6. HTML tags can include attributes, which provide additional information for the elements, such as font, size, etc. These are usually set up in pairs, with attribute= and identifying information within quotes.

    7. HTML pages always starts with the tag , then where all the info not displayed as content is defined (title, descriptions, etc), and f the which includes all of the content. Each of these has a closing tag, indicated with the slash sign

    1 Like
    1. HTML stands for hypertext markup language and is used to define a certain structure of content.
      2.HTML is used for enclosing or wrapping contents so they appear a certain way on a website.
    2. We are learning HTML to learn how to make text appear on a website. It is the first building block needed to learn how to create websites.
    3. An HTML tag can be used to establish what is the opening and closing of the statement you want to display.
    4. An example of a structure of an HTML tag is as follows: Hello how are you?
    5. An attribute is something added to the code that you don’t want to appear in the actual content.
      An attribute is essentially a not or can be used to establish something as a value.

    Head elements provide general infomration and formatting commands and body elements put the text needed.

    1 Like

    Screen Shot 2021-03-11 at 10.53.27 AM

    1 Like
    1. Hyper Text Markup Language
    2. HTML is the code used to structure a web site;
    3. Because it is the base of any web site, as such it is important to have some foundations on it;
    4. Tags are used to define the start and the end of the content. We will always have a opening tag and a closing one;
    5. A opening tag will always start and end with “<” and “>” respectively. The closing tag will always start with “</” and end with “>”. The tag can have or not a class attribute.
    6. Attributes provide additional information about an element.
    defines the type of the document defines the beggining and the end of the page acts as a container for all the stuff which is not content this element sets the character set your document uses this element defines the title that appears in the web page this defines all the content you want to show on the web page
    1 Like
    1. Hypertext Markup Language
    2. Used to structure a web page and its content.
    3. Because we need it put information on the web.
      4.Text used to create an html element.
      5.It consists of an opening tag and a closing tag.
      6.An attribute is text that extends an element giving it behavior or providing metadata.
    4. It consists of elements which when put together form an html page.
    1 Like

    HTML stands for Hypertext Markup Language. It defines the structure of your content.

    It’s used to make content in a website appear a certain way. For example making text bold, a larger size font or dot points. You can also set hyperlinks with it. Create tables and paragraphs.

    We are learning HTML because an important part of a DAPP is the front end (website), learning HTML will help us make the website look good.

    A tag is used within an element to make a word or image hyperlink somewhere, italicize, make font bigger or smaller, bold etc.

    There are 2 parts to HTML tags. The first is the opening tag which has the name of the element wrapped in closing angle brackets, using p (paragraph) for example

    . The second is the closing tag which shows where the element ends, it has a forward slash and then the element name

    .

    Attributes are extra information about the element that don’t appear in the content

    !DOCTYPE html - it is required to make sure the document behave correctly.

    html></hmtl - This element wraps all the content on the page, considered the root element.

    head></head - the head element holds all the stuff you want on the page that isn’t content seen by viewers. This is like keywords & page description for search results, CSS to style content, character sets & more.

    meta charset=”utf-8” - this element sets the character set for the document. UTF-8 includes most characters in the majority or written languages. It is good to add this.

    title></title - the title element sets the title of the page. It is shows on the browers tab and used to describe the page when it’s bookmarked.

    body></body - the body element contains all the content that you want shown on the webpage. This can include text, images, videos, games, audio tracks and more.

    2 Likes
    1. HTML stands for hyper text markup language, and is the main framework for a webpage.
    2. HTML is used to segment and display code including text and images on a webpage.
    3. We are learning HTML to form a solid base of knowledge moving forward to better understand front end programming.
    4. An HTML tag is a semantic way to represent information ie. tags represent the main ‘body’ of a webpages content.
    5. Tags in html begin with ,<> and end with </>, some tags (like image tags) can be self closing i.
    6. Attributes can attach additional information to an html can, for example, adding a source to an img tag.
    7. The Anatomy of an HTML document starts with tags enclosing everything. It generally contains a head for meta data, header, body and footer.
    2 Likes

    1/ hypertext markup language: an open source code, used to build front-end tools
    2/ to structure a web page content: taking a content, wrapping it a series of various elements, specifying the way they will appear in a web page
    3/ to put infos related to crypto (= content), fetched from internet, in a desired shape on screenshots
    4/ tag is a mark inserted in an HTML instruction, to define beginning, end, way of displaying content, without themseves not being displayed
    5/ tags can involve attributes, that don’t appear in the displayed content, containing extra information about content
    6/list of instructions, when executed, displaying contents in a cedrtain way

    1 Like
    • What is HTML? and What is HTML used for?
      Language/structure for telling a computer how to display things, link things, and move things around on a page.
    • Why are we learning HTML?
      TO be able to interface the real world with the blockchain world. Much of the language has transference into blockchain programing as well.
    • What is an HTML tag?
      Instructions for how to deal with what is inside the tag
    • What is the structure of an HTML tag?
      I think of them like operations in mathematics while using parenthesis. Open and close tags can be nested but must be in the correct order to ensure the right series of operations is completed.
    • What is an attribute?
      Extra information that isn’t displayed but is part of the page for search engines and such.
    • What is the anatomy of an HTML document?
      Anatomy - nested tags and attributes
      Cheers
    1 Like
    1. HTML is Hypertext Markup Language
    2. It's used for coding documents designed to be shown as websites
    3. Learning HTML will build a foundation of coding necessary to learn more advanced code
    4. A HTML tag is the < li > at the start/end of content that wraps it in a particular way
    5. The structure includes the brackets and tag itself < strong > at the start, and < / strong > at the end to show that the content we wanted to be tagged is over.
    6. An attribute is something we add to an element, to give it a particular feature. They come as name="value"
    7. The anatomy of a HTML document means how it's structured
    1 Like
    1. HTML (Hypertext Markup Language) is a coding language that determines the structure of ones content.

    2. HTML is mainly used for creating the text of a webpage, as well as putting in images.

    3. We are learning HTML because in order to interact with the blockchain industry, we need to know everything from the front of the house, to the back, so that lapses in communication become less frequent, and you won’t have to hire someone for the fact that they know something you don’t.

    4. An HTML tag is the element in which the content is wrapped around. There can be multiple elements in a given string of code.

    5. HTML structure : (opening tag) content (/closing tag) in its simplest form

    6. An attributes are extra aspects of the structure that the developer want’s to keep out of the view of the audience.

    7. !Doctype html (root element): Required for a functionality of a webpage
      Html element (root element)- the element that wraps the content of the entire page
      head element- wraps around everything that isn’t shown for public view
      Meta charset= “utf-8”- the element character set that primes the document to use “utf-8”,which includes most written languages. It is advised to use utf-8, as the document can now handle most text types.
      Title Element- element that holds the title of the webpage
      Body Element- holds all the content you want to put on the page.

    1 Like
    1. Hypertext Markup Language is the code used to structure a webpage and its content.
    2. It defines the structure of your content with a series of elements which you enclose or wrap to make it appear or act in a certain way.
    3. It is a foundation for learning web development and blockchain development.
    4. A Tag denotes the start and end of a section in HTML, like a heading, paragraph, table, list, etc…
    5. Always starts with “_” and ends with “”
    6. An attribute specifies some additional properties regarding the content included inside a tag.
    7. <"content"> <"content">
    1 Like