HTML Reading Assignment

  1. What is HTML?

HTML stands for HyperTextMarkupLangague

  1. What is HTML used for?

Hyper Text markup allows for the creation of websites and is the “langauge” of the internet

  1. Why are we learning HTML?

So, We can create content on the internet and have a base for coding concepts.

  1. What is an HTML tag?

A tag is the beginning or end of a a segment of code.

  1. What is the structure of an HTML tag?
  1. What is an attribute?

An Attribute is extra information about a element that you don’t want displayed to the end user.

  1. What is the anatomy of an HTML document?
  1. Hypertext Markup Language is a markup language.
  2. HTML is used to structure a webpage and its content.
  3. We are learning HTML inorder to gain the necessary skills to develop applications which can interact with a blockchain.
  4. A tag defines the element name in addition to where the element’s effect begins and ends.
  5. An HTML tag is structured with an opening and closing tag that wrap the content. The opening tag contains the element name, p for paragraph, within angled brackets:

    The closing tag is similar to the opening tag except a forward slash precedes the element name:

    The structure is as follows

    content

  6. An attribute contains extra information about the element that does not appear in the content. This gives the element a targetable identifier
  7. An HTML document starts with an introductory statement: This ensures the code runs good. Then there is the root element: This wraps all the content on the page.The element holds all the content unseen to the end user and is nested within the root element. Nested within the element are the and elements which sets the document character set to UTF-8, and the browser tab page title/bookmark description. Finally nested within the root element is the element which holds all the content available to the end user.

1.What is HTML?
It is a Markup Language.

2.What is HTML used for?
We can make different parts of the content to make it appear a certain way, or act a certain way.

3.Why are we learning HTML?
I will need it as a base.

4.What is an HTML tag?
We are using it ti crate an element.

5.What is the structure of an HTML tag?
open tag and closig tag

    and

6.What is an attribute?
Attributes contain extra information about the element that you don’t want to appear in the actual content.
7.What is the anatomy of an HTML document?
starts and ends with and
we have head and
body

HTML Reading Assignment

  1. What is HTML? Hypertext Markup Language.
  2. What is HTML used for? HTML is a markup language that is used to define the structure of a web page and its content.
  3. Why are we learning HTML? HTML is the language we need to know to create the first level of a web page. The static page.
  4. What is an HTML tag? An HTML tag consists of the name of the element and determines where that element will begin and end.
  5. What is the structure of an HTML tag? ex.

    content

  6. What is an attribute? An attribute contains extra information about the element that you don’t want to appear in the actual content.
  7. What is the anatomy of an HTML document?
My test page My test image

What is HTML?

Is known as a markup language not a programming language. It uses elements to determine how your content is to be structured or displayed. These elements are configured in way to display images and font in a desirable fashion.

What is HTML used for?

This markup language is used to create and organize content to be displayed predominantly as pages viewed on the web. But not limited to.

Why are we learning HTML?

HTML will allow us to interact with smart contracts and dapps

What is an HTML tag?

In order to complete an element a starting and ending tag must be used for content which is typically text.

What is the structure of an HTML tag?

The Structure of an HTML tag begins with an opening tag which identified by

followed by content such as text. An ending tag would follow the content. The combination of these create an element. Example: < p> Enroll in Ivan on Tech Academy< p>

What is an attribute?

An attribute is the means in which you can provide addition information within an element that is not visible when viewed from a web browser.

What is the anatomy of an HTML document?

The references below comprise an HTML document. All elements must have an opening and closing tag except for document type. It begins as follows:

< !DOCTYPE html> This reference is required in order for the page to behave properly when viewed with a web browser

< html> this element wraps all content on the page. Known as the root element.

< head> the head element is the means to package all content you are displaying on the page

< meta charset=”utf-8”> This element defines the character set utf-8 that will be used on the page. This set includes a wide variety of characters utilized by many languages. This element should be used to prevent future issues.

< title> the title element displays the title of your page in the browser tab. When saving this as a bookmark or favorite the text within the title element will be used to label your saved link.

< body> This element is used to hold all content to be displayed on the page consisting of these possibilities text, images, videos, games and audio tracks.

  1. Hypertext markup language. It’s like a wrapper for text to make it appear in different way.

  2. Used for sending instructions to websites to make text appear differently or organise content.

  3. We will be linking the website to the smart contract instructions and its a frequently used language.

  4. Marks the beginning and end of an element and the name of the element.

  5. opening tag, content, closing tag. + content +

  6. Contains different information about the element. Is found within the opening tag.

  7. content <-- Element.
    There can be additional elements within an element.
    Begin by telling computer you’re writing html
    Then wrap everything in -
    Then the starting wrapper - includes the set of characters being used and the My title
    Then next the content seen on the page itself web page content

HTML is not a programming language.
HTML is a MARKUP language - it defines the structure of your webpage content.
HTML 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.
The enclosing tags can make an image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller and so on.

Hello, anyone here understand why we need github to install atom?

  1. What is HTML?
    HTML is Hyper Text Markup Language.
    It’s the code used to structure a webpage and content.
    e.g. paragraphs, list of bulleted points, using image and datatables.
    Not a programming language.
    It’s a markup language that defines the structure of your content.

  2. What is HTML used for?
    HTML marks up the content of a web page and the links - it is not interactive - interactivity is provided by Javascript.
    HTML consists of a series of elements which are used to enclose or wrap different parts of the content to make it appear a certain way or act in a certain way.

  3. Why are we learning HTML?
    To start off with something basic, then go onto Javascript, then do SOLIDITY.

  4. What is an HTML tag?
    An HTML tag is a code which initiates a result on the webpage - e.g. a ‘p’ initates a paragraph - it needs to be enclosed by < > which initiates the opening of a paragraph, and followed by /p which initiates the closing of a pragraph, and must be enclosed with < >

  5. What is the structure of an HTML tag?*
    An opening , an attribute inside and finishes with a closing

  6. What is an attribute?
    ATTRIBUTES contain extra information about the information that don’t want to appear in the actual content. There is an attribute name and an attributable value. The attribute allows you to give the element as an identifier that can be used later to target the element with style information. Attributes should always have:

  1. a space between it and the element name or the previous attribute.
  2. The attribute name followed by the = sign.
  3. The attribute value wrapped by opening and closing quotation marks.
  1. What is the anatomy of an HTML document?
    An HTML page always starts with the tag ,
    it has and where all the info needed to the website that won’t appear as a content (title, descriptions, SEO, scripts and so on),
    and finally the where all the content lies.
    All these tags need to be closed

Hello,
OK, I did the HTML markup in the Text editor but not sure how to open it in Firefox. Got any suggestions. Much appreciated. D

  1. What is HTML?

Hypertext is a standardized markup language.

  1. What is HTML used for?

It is used for ensuring proper formatting of text and images and connecting pages with hyperlinks so it can be displayed on the world wide web as it was intended to look.

  1. Why are we learning HTML?

We are learning HTML because we need to know the basic of formatting in code to develop our skills and knowledge so we can progress to more complex computer languages to achieve our goals.

  1. What is an HTML tag?

A HTML tag is used to define a structure.

  1. What is the structure of an HTML tag?

The whole element being the opening tag, content tag, closing tag create the structure.

  1. What is an attribute?

Attributes contain extra information that are used inside the opening tag to control the elements behavior, attributes can then be given identifiers and set as default attributes so that they can be used later in other projects.

  1. What is the anatomy of an HTML document?
  • < !DOCTYPE html>
  • < html>
  • < head>
  • < meta charset=“UTF-8”>
  • < title>
  • < body>
  1. What is HTML?

HTML is not a programming language; it is a markup language that defines the structure
of your content.

  1. What is HTML used for?

HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.

  1. Why are we learning HTML?

To use a web page as a front end to fore example a smart contract or other apps.

  1. What is an HTML tag?

HTML tag defines a HTML element. It consist of an opening tag, content, and a closing tag. (no closing tag for img.)

  1. What is the structure of an HTML tag?

In sequence: Opening tag < p > content, closing tag < /p >. The opening tag may contain attributes like < p class=“note” > (class is the attribute and note is the value of the attribute)

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. It can be used as a “target identifyer” for styling foe exaple via CSS.

  1. What is the anatomy of an HTML document?

< !DOCTYPE html>
< html>
< head >
< meta charset=“utf-8” >
< title>My test page< /title >
< /head >
< body >
< img src=“images/firefox-icon.png” alt=“My test image” >
< /body >
< /html >


Hope I nailed it!

  1. What is HTML?
    HTML is Hypertext Markup Language.

  2. What is HTML used for?
    HTML is code used to structure a webpage and its content.

  3. Why are we learning HTML?
    we are learning HTML to be able to construct our own webpage and become builders.

  4. What is an HTML tag?
    HTML tags are element names in brackets, that tells the web page where elements start and end.

  5. What is the structure of an HTML tag?
    HTML have two tags, start with an opening bracket that contains the element name.The closing tag will be the same except there is a forward slash before the element name.

  6. What is an attribute?
    An attribute has a name and a value, the name is followed by an equal sign, and the value post equal sign, it contains the hidden data on the webpage wrapped in quotation marks.

  7. What is the anatomy of an HTML document?
    !doctype html
    html></html
    head></head
    meta charset =“UTF-8”,
    title></title,
    body></body
    all must be opened and closed with angle brackets.

Hi, did yo save the text file with the extention .html?

Yes, I did that.
Weirdly, I did manage to open it in the browser, and I got the page to come up, but can’t remember how I did it.

I will experiment again.

What happened before was somehow it was saved in the documents and it had the chrome symbol in the saved bit in the documents, and I clicked on that, and it came up as a webpage.

So did it by accident, and don’t know what I did, dig?

D

Thank you for your help.
I went back to the video, and now I have worked it out.

D

  1. HTML is a markup language. Not a programming language. It takes the structure of your content and makes it appear a certain way.

  2. HTML is used to make your content appear how you want on the screen.

  3. We are learning HTML so we have an understanding of programming and if we create a dapp how it will look like on the front end.

  4. An HTML tag is saying what kind of content it’s showing.

  5. <> </>

  6. An attribute gives more info for an element. It may have more specifics.

  7. Head and body. Head is the website specifics that don’t show up. The body is the content.

Hypertext Markup Language

Used to structure a web page and content

To be able to build a simple website to then interact with the Blockchain

Part of an element which states where the element begins and ends the effect

Opening tag and closing tag

Information about the element that you don’t want to appear in the actual content

The doctype, the HTML element, the head element, the USF-8 element, the set title element, and the body element

<!Doctype html>
<html>
<head> 
<meta charset="utf-8">
<title>My First Coding</title>
</head>
  <body>
    <p>Hello boys and girls</p>
    <ol>
      <li>HTML (Hypertext Markup Language) is a code for structuring the content on websites.</li>
      <li>It is consisted by a series of <strong>Elements</strong> and is used to define the appearence and the utilities of the website.How the content and the text might look, add links, images, videos etc.</li>
      <li>We have to learn how to create user friendly interfaces on the websites, that they will work correctly on the back-end and be able to connect them with other applications, websites or Dapps.
       <li>Tag is the beggining or the taking effect point of the <strong>Element</strong> and the end of it. The opening tag is also the tag's <strong>Name</strong>.  
 <li>An HTML tag concists of opening and closing <strong>Angle Brackets</strong> and the <strong>Element name</strong>.The closing tag also has a <strong>Forward Slash</strong> before the element name.
<li>Attribute is a container with extra information about the element that we don't want to appear on the website.
  <li>The anatomy of an HTML is:
    <ol>
      <li>The <strong>Doctype html</strong> element needed for the document to work correctly.</li>
      <li>The <strong>html Element</strong> that consists all of them containt of the page</li>
      <li>The <strong>Head Element</strong> that consists the containt that we don't want to show on the websites viewers</li>
      <li>The <strong>Meta Charset</strong> element that defines the character set that the document will use</li>
      <li>The <strong>Title</strong> element that is the title that is shown on the broswer that the website is loaded.
      <li>The <strong>Body</strong> element is all the containt that you want to be shown on the website users and viewers.
        
        <p> P.S: < image > on my profile coming soon until then <a href="https://wallpapertag.com/wallpaper/full/b/8/c/150709-peace-wallpaper-2560x1600-for-windows-10.jpg" >Piece</p>
          [quote="ivan, post:1, topic:3055, full:true"]
Welcome to the discussion about the first assignment.

Leave your answers to the questions below in this thread. If you have any questions or you want to discuss something connected to the assignment feel free to do it in this thread as well, but please everything to the topic of HTML!

1. What is HTML?
2. What is HTML used for?
3. Why are we learning HTML?
4. What is an HTML tag?
5. What is the structure of an HTML tag?
6. What is an attribute?
7. What is the anatomy of an HTML document?
[/quote]

My First Coding

Hello boys and girls

  1. HTML (Hypertext Markup Language) is a code for structuring the content on websites.
  2. It is consisted by a series of Elements and is used to define the appearence and the utilities of the website.How the content and the text might look, add links, images, videos etc.
  3. We have to learn how to create user friendly interfaces on the websites, that they will work correctly on the back-end and be able to connect them with other applications, websites or Dapps.
  4. Tag is the beggining or the taking effect point of the Element and the end of it. The opening tag is also the tag's Name.
  5. An HTML tag concists of opening and closing Angle Brackets and the Element name.The closing tag also has a Forward Slash before the element name.
  6. Attribute is a container with extra information about the element that we don't want to appear on the website.
  7. The anatomy of an HTML is:
    1. The Doctype html element needed for the document to work correctly.
    2. The html Element that consists all of them containt of the page
    3. The Head Element that consists the containt that we don't want to show on the websites viewers
    4. The Meta Charset element that defines the character set that the document will use
    5. The Title element that is the title that is shown on the broswer that the website is loaded.
    6. The Body element is all the containt that you want to be shown on the website users and viewers.
          <p> P.S: < image > on my profile coming soon until then <a href="https://wallpapertag.com/wallpaper/full/b/8/c/150709-peace-wallpaper-2560x1600-for-windows-10.jpg" >Piece</p>
      
  1. What is HTML?
    Html is the acronym for Hypertext Markup Language
  2. What is HTML used for?
    Html is used to create web 1.0 simple static webpage
  3. Why are we learning HTML?
    To have a basic skeleton for our website a simple structure we can use to organize our site
  4. What is an HTML tag?
    An html Tag is an element used to code webpage, each element is interpret differently by your browser
  5. What is the structure of an HTML tag?
    Two opposite angle bracket with an element key word inside for opening , the same thing but with a back slash for the closing
  6. What is an attribute?
    An attribute is a parameter you can add inside your tag to add functionality
  7. What is the anatomy of an HTML document?
    It always start with the html tag then the body, you can add other element inside to structure your website