HTML Reading Assignment

  1. Hypertext markup language.
  2. static website
  3. eeeeuhhmmm
  4. for instance:
    /unordered list
  5. you open like this, with angle brackets , and close with forward slash in between angle brackets
  6. example given: src / i.e. source 6. extra bits of information within tags
  7. many examples:
    < !DOCYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>My Test page
    < /head>
    < body>
    < img src=“images/firefox-…” alt=“orange fox screaming”>
    < /body>
    < /html>
2 Likes

What is HTML?

  • HTML is a markup language. It defines the structure of your content.
    What is HTML used for?
  • HTML can make different parts of content appear or act in a certain way.
    Why are we learning HTML?
  • Basic web development allows you to show the back end in action.
    What is an HTML tag?
  • A tag is how you tell the content what to do. Hyperlink, italicize, font size, etc.
    What is the structure of an HTML tag?
    Opening tag, closing tag. < p>content< /p>
    What is an attribute?
    Extra information about the element that you don’t want to appear in the actual content.
    What is the anatomy of an HTML document?
    < !DOCTYPE html>
    < html>
    < head>
    < meta charset=“utf-8”>
    < title>My test page
    < /head>
    < body>
    < img src=“images/firefox-icon.png” alt=“My test image”>
    < /body>
    < /html>
2 Likes
  1. What is HTML?
    It stands for Hypertext markup language.

  2. What is HTML used for?
    It is a markup language used to structure a web page and its content.

  3. Why are we learning HTML?
    It’s an essential part of web programming.

  4. What is an HTML tag?
    It denotes the element used for displaying content, wrapped in angle brackets.

  5. What is the structure of an HTML tag?
    Opening angle bracket, name of the element, e.g. p (paragraph), closing angle bracket.

<p>
  1. What is an attribute?
    Extra information about the element which is not displayed as part of the content.

  2. What is the anatomy of an HTML document?
    doctype, html element that wraps all the content, head which contains all meta information for the page (character set, title), references to scripts, styles and the body that holds all the content we want to display to users.

2 Likes

Hypertext Markup Language its a code to strucure a webpage and its content.

webpages use html to make sure all the content is displayed as it should look.

Cause its the basics of programming and when we get to understand this our brains will have less challenge with learning other languages too. also we will need webpages to connect to some dapps in future.

tags open anc close a line of code in html

Hi my name is Nolles

An attribute specifies some additional properties regarding the content included inside a tag.

html body and head

1 Like
  1. What is HTML?
    HTML is the code that is used to structure a web page and its content. HTML is not a programming language but markup language that defines the structure of your content.

  2. What is HTML used for?
    Webpages use HTML to structure its content

  3. Why are we learning HTML?
    It is an important part of programming

  4. What is an HTML tag?
    A tag is used to tell the content what to do. eg. Font Size, Color, Hyperlink

  5. What is the structure of an HTML tag?
    Opening tag, closing tag. < p> I am CryptoMel< /p>

  6. What is an attribute?
    It is 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?
    HTML, head, and body

1 Like
  1. What is HTML?

A markup language that defines content.

  1. What is HTML used for?

HTML can make content appear in different ways, like links or fat text.

  1. Why are we learning HTML?

To be able to build websites and other applications that can interact with smart contracts later on, while it’s also a good foundation for learning and understanding other languages.

  1. What is an HTML tag?

It’s the code that wraps and executes the content and elements so it appears like we want it.

  1. What is the structure of an HTML tag?

Opening tag then closing tag. ( content )

  1. What is an attribute?

Attributes contain extra information about the element that you don’t want to appear in the actual content. This makes it possible to determine the value of the content or make it easier to target.

  1. What is the anatomy of an HTML document?

All the code needed behind the visible content is the anatomy of the HTML. (HTML, Head and body).

1 Like

HTML - Reading

  1. HTML is an Hyper Text Markup Language that defines the structure of contents. It tells a web browser what each part of a web browser is.

  2. HTML is used as a code to define headers, paragraphs, links, images and more.

  3. We are learning HTML because it is a basic programming language for web development.

  4. HTML Tag is a keyword which defines how a web browser will format and display contents.

  5. The structure of an HTML tag consist of:

  • opening tag
  • content
  • closing tag
  • sometimes unclosed tag
  1. Attributes provide additional information about elements. They are specified in a star tag and usually come in name/value eg pairs like: name= “value”

  2. The anatomy of an HTML Document (It wraps up the basic elements):

  • ! DOCTYPE html
  • html
  • head
  • meta charset = “utf - 8”
  • title
  • body
1 Like

What is HTML? Hyper Text Markup Language used to make a web site look the way you want it to look and function.
What is HTML used for? It is used to write web pages, from what I gather it’s a set of standards that the computer understands and can generate a web page.
Why are we learning HTML? HTML is the basics of computer programing.
What is an HTML Tag? A Tag is a way to change the element by enclosing it in the code to make a link or bold lettering etc…
What is the structure of an HTML tag? The element is the whole tag enclosed with opening and closing tags with the content in-between.
What is an attribute? An Attribute can be added to an element to provide a special feature inside the element.
What is the anatomy of an HTML document? This is the lay out of the page and how it will look with header, body, title, lists, etc…

1 Like
  1. HTML is a markup code - used to control how your content is presented.
  2. To build websites that display text, images and lists.
  3. So we can build a site to test/demo our javascript.
  4. Tags specify what type of elements you are building.
  5. There's p's to either side of this - you just can't see them

  6. You can add attributes to your elements to make them blue or link to something…lots of stuff!
  7. The opening tag, content, closing tag - forming the element
1 Like
  • What is HTML?
    ctrl v

    it is a markup language that defines the structure of your content

  • What is HTML used for?

To create a web page.

  • Why are we learning HTML?

To learn basic programing and to understand how to make a web page for the front end of a smartcontract.

  • What is an HTML tag?

It is like a function so that the program can read what you want to show on the webpage?

  • What is the structure of an HTML tag?

it starts with < > content and ends in </>

  • What is an attribute?

It is something inside the element to define something but it doesnt show.

  • What is the anatomy of an HTML document?
it is to define how the program runs is the root element that defines the whole web page it is what you want the web page to be known by and it isnt shown on the actual webpage. it is the charecters that can be used in the webpage. < title > is what is going to be shown at the begining of the web page < body> is the actual content you want to show in the web page <img src=" it is an element that shows images
1 Like
  1. What is HTML?
    Hypertext Markup Language.

  2. What is HTML used for?
    It structures the content and webpage.

  3. Why are we learning HTML?
    By understanding how webpages are coded, it helps in the development of the front-end of
    blockchain applications.

  4. What is an HTML tag?
    It opens and closes elements in the code.

  5. What is the structure of an HTML tag?
    Opening tag: <tagname>
    Closing tag: </tagname>

  6. What is an attribute?
    It provides extra information about the element that is not part of the actual content.

  7. What is the anatomy of an HTML document?
    <!DOCTYPE html>, <html>, <head>, <body>

1 Like

html hypertext markup language. It’s setting the stage for what is being said in the line of code you’re writing to be able to understand what it is you’re trying to get the program to do. I think this is important to learn so we can understand that in order for the program to function, it has to know what it is going to be working with.

A tag is used to open up the line of code for what is going to proceed after the tag, allowing the program to make to decision to work with an element. When an element is described it opens up the program to have content within the tags.
The structure of a tag would be the opening tag which is wrapped around the content within it.

An attribute is code within an opening tag that describes the element in a way that doesn’t need to be displayed in the content. Telling the program that the element needs to behave in this way.

The anatomy of an html document is all of the elements succeeding the opening tag.

1 Like

1.What is HTML? HTML is a markup language used to structure the content of your website.
2.What is HTML used for? A HTML is used to structure the content of your website.
3.Why are we learning HTML? We are learning HTML because we should build things that work, to build applications/small websites that can interact with your smart contracts/blockchain.
4.What is an HTML tag? An HTML tag is used to make a work hyperlink, make the font bigger or smaller, etc.
5.What is the structure of an HTML tag? Opening Tags + Content + Closing Tag= Element.
6.What is an attribute? Atributes contain extra information about the element.
7.What is the anatomy of an HTML document? Individual elements combined to form an entire HTML page.

1 Like

1.Hypertext Markup Language.
2. Used to structure a webpage and the content.
3. Create the frontend of the blockchain application.
4.It is used to create an element on a web page, it can contain text, images or links to other information.
5. Opening tag, content and closing tag, containing possible attributes.
6. “Attributes contain extra information about the element that you don’t want to appear in the actual content.”
" An attribute should always have the following:1. A space between it and the element name (or the previous attribute, if the element already has one or more attributes). 2. The attribute name followed by an equal sign. 3. The attribute value wrapped by opening and closing quotation marks."
7., , , ,,<.body>,.

1 Like
  • What is HTML? Hyper Text Markup Language
  • What is HTML used for? used to create webpages, its the protocol or code used to build dynamic programs
  • Why are we learning HTML? To help us understand and help us learn to write good foundational code for good programs in the future.
  • What is an HTML tag? Its what defines different parts of the code and tells the computer to have specific actions.
  • What is the structure of an HTML tag? Tag and the beginning each enclosed in brackets
  • What is an attribute? it contains extra information about the document like making a word bold or italic or to stand out.
  • What is the anatomy of an HTML document? It is everything within the body of the brackets.
2 Likes
  1. HTML is a Hypertext Markup Language
  2. use of HTML, it is a code use to structured a web page and its contents.
  3. we are learning HTML because its useful and helpful to translate and transfer most of our
    Blockchain programmes language to interact with the web.
  4. Tags can be use to make a word or image dance to your tones or manipulate them.
  5. HTML tags structure can be represented as

    paragraph in an element.
  6. An attribute is extra information in the element that you don’t want to appear in the actual
    content.
  7. Anatomy of an HTML document

    paragraph, Tags, attributes, content and element.
    it’s the markup of the element.
2 Likes
  1. HTML (Hypertext Markup Language) is a programming language;
  2. HTML is used to create a code used to structure a webpage.
  3. It teaches the basics that can be used to create applications that interact with smart contracts and sets the foundation.
  4. An HTML tags are elements that can hyperlink text or images to somewhere else, bold or italicize text, create new paragraphs, etc.
  5. They all have an opening and a closing…

    This course is awesome!

  6. An attribute is extra information that won’t appear in the actual content and should have a name and a value.
  7. The anatomy of an HTML document are individual elements used to create a webpage and generally include a preamble ();
    a (a container for all the stuff you want to include that isn’t content);
    a <meta charset="utf-8> (which define the character set your document should use)
    a (sets the title of your page)
    and (contains all the content you want to show visitors to your webpage)
2 Likes

hello, am new here, please do we need to use this
we we start our HTML document

2 Likes
  1. What is HTML?

HTML is an abbreviation for Hypertext Markup Language.

  1. What is HTML used for?

HTML is used to structure content on websites.

  1. Why are we learning HTML?

HTML is basic knowledge for creating websites and front end.

  1. What is an HTML tag?

HTML tags are instructions in angle brackets and stand at the beginning and also most at the end of elements.

  1. What is the structure of an HTML tag?

Angle bracket, name of element, angle bracket

  1. What is an attribute?

You can use attributes to add additional information to elements that you do not want to appear in the actual content.

  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="……">
  </body>
</html>
2 Likes

HTML is a Hypertext Markup Language

HTML is used for coding websites by defining the structure of content

We are learning HTML as a foundation to eventually being able to learn and use other languages

Tags are elements of the code that enclose content which then affects the appearance in the front end

Structure of a tag is: there are opening and closing tags. The opening tag consists of an open angle bracket, name of element, and closing tag; the closing tag consists of open angle bracket, name of element, back slash, and closing angle bracket

An attribute is extra info about the element that is not visible in the front end; it consists of a name (class) and a value in quotation marks (editor-note)

Anatomy of an HTML doc:

<!DOCTYPE html> - required preamble
<html> - root elementj - wraps all content
  <head> - head element - for key words, descriptions for searches, text sets
    <meta charset="utf-8"> - character set
    <title>My test page</title> - appears in tabs/favourites
  </head>
  <body> - all content shown on front end
    <img src="images/firefox-icon.png" alt="My test image">
  </body>
</html>
2 Likes