HTML Reading Assignment

1, Html is markup language you use to structure the content of your page. The code is executed within your browser.

2.It is used together with CSS an Javascript to build your page. Html is code that determines what is on your page, CSS determines the visual look an JS makes logical code of the page.

3.We are learning HTML because it is the main building block of internet pages, we need for the frontend of our dapps and smart-contract.

4.Tags are predetirmed words insede brackets that tell the browser how to print the code inside tags onto screen.

5.Structure of a tag is predetermined word inside brackets. If it is closing tag we put / infront of the word.

  1. Attribute is extra information that isn’t printed on the screen. We use them so we can target sections all sections with same attribute with one line of CSS.

7.Anatomy
Doctype
HTML
HEAD
BODY
TITLE

1 Like
  1. HyperText Markup Language - It’s the code used to create the structure of web pages.
  2. It’s used to create the structure of a web page.
  3. It’s a great starting point when building content for the web.
  4. The tags contain and define your content.
  5. Opening tag which can contain attribute information, then the content, followed by the closing tag. This is in most cases but some tag don’t need closing tag like the tag.
  6. Attributes can define extra values for a tag.
  7. The anatomy of an HTML document starts with the document type (although not really used for anything, but still required), then the opening tag. Next the tags with the and tag nested inside. The next section is the which then nests the page content tags (p, ol, ui etc.).Finally it all ends with the closing tag.
1 Like

1.It’s a code that allows us to write websites in organised way e.g. we structure it(paragraphs, headers, hyperlinks etc.) but also we can add files like audio, video or photos.
2.To create websites and its content
3. We on this course learn it to use them as a gateway to programs that we develop. Those are a frontend for users to interact with our software(let me know if i got it right guys).
4-5.Tag it’s kinda a commend within which text or other data interacts as tag says so e.g. if we have a text and it is within … tags it will be visible for user on the website. About the structure- example Ivan needs a haircut ASAP sorry mate :P- as I’ve said earlier element is whole ā€œlineā€ from opening tag which is ā€œā€, then we have content which will be a text in this case ā€œIvan needs a haircut ASAPā€ and then closing tag
6.For now I consider attribute as a information that helps organising content. We can create a class consisting particular data that can be managed as a group with help of attributes etc.
7.1. doctype html determines that it is html, for now I thin it’s enough
7.2. between those tags we put everything what our website will be made from- no diff if it’s visible content or just backend of our work
7.3. Invisible element for end user. It basically consists keyword that help in googling your website
7.4. frontend content visible for website users
7.5. that element says what letters, signs, digits etc we will be using in creating.
7.6. title of a webpage which will appear as your bookmark name in browser.

Enjoy and give me a shoutout what u disagree with.

1 Like

1.HTML stands for Hypertext markup language
2. it not a programming language but a markup language
3. we are learning it because it is part of the course
4.


5.Opening Tag, closing tag and in between the content, this all together is the entire element.
6. A atribute contains extra info about the element that you dont want to appear in the actuel content
7.A anatomy is the entire code that combine all the individual elements

1 Like
  1. HTML, hyper text markup language is not a programming language but a markup language that defines structure of our content. It consists of elements that enclose different parts of the content, making it act or appear in a certain way.
  2. It is used to create and format web pages. It can be also used to create or format specific elements within page, for example, forum boards could include html formatting in posts, enabling embedding of links, bulletin etc
  3. To have a working product we need both front end and back end. HTML understanding will give us tools to connect our smart contract code to a website.
    4.HTML code that defines every structure on HTML page.
  4. It begins with < and ends with >, end tags additionally start with /
  5. Attribute contains extra information about the element that we don’t want to appear in the actual content.
    7. !DOCTYPE html> - document type is HTML, needs to be included
    html> /html> - this element wraps all content on the entire page, aka root element
    head> /head> this acts as a container for all stuff on the page that is not contet that we are showing to page visitors.
    title> /title> this sets the title of page which appears in browser tab and in bookmarks.
    meta charset = ā€œutf-8ā€> - sets character set that document should use, standard is utf-8
    meta> /meta> - information about the page that is not displayed
    script> /script> links to external java script
    link/> links to external cascading sheet
1 Like
  1. What is HTML?
    • Organized and structured words and letters that organize content (word/images/ideas) in a particular chosen fashion on a webpage.
  2. What is HTML used for?
    • ā€œStructure a webpage and content.ā€ AKA make things look like you how you want them to look.
  3. Why are we learning HTML?
    • Html will be part of the vehicle used to help express our crypto creations and provide a platform for usability.
  4. What is an HTML tag?
    • A tag is the signaling like a stop light that tells the computer that instructions are going to start (post the tag) or stop (pre the tag).
  5. What is the structure of an HTML tag?
    • Following my stop light idea, for the green light (go – run with anything after this tag) you start with an open parenthesis then the command then closed parenthesis. For the stop light (stop what you were doing) you start with an open parenthesis and then add a / and then add the command and a closed parenthesis.
  6. What is an attribute?
    • An attribute is like the yellow light. It adds flavor and additional intent to the initial command. Open parenthesisdrive yellowlight=$#i+ Im going to run this light>I am pretty positive I was already in the intersection if I get askedOpen parenthesis/drive>
  7. What is the anatomy of an HTML document?
    • Doctype, elements (html, head (meta charset=ā€utf-8ā€,title), body)
1 Like

1-HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content.
HTML is not a programming language.
2-HTML is used to structure a web page and its content.For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
3-For structing our front page and its content.
4-tag is an element of HTML.using for many things such as make a word or image hyperlink to somewhere else,making a font larger or smaller and so on.
5-1- opening tag 2-closing tag. content is between these two and altogether comprise the element.
6-Attributes contain extra information about the element that you don’t want it to appear in the actual content.
7-Individual elements are combined together to form an entire html page:
!DOCTYPE html
html,head, body, meta , title tags
Images ,…

1 Like
  1. HyperText Markup Language - a set of standardised rules for the basic elements on the web page

  2. HTML is used to break the web page content in meaningful blocks.

  3. We are learning HTML because it is the knowledge that you must have.

  4. HTML tag is a short abbreviation of a HTML reserved name.

  5. HTML tag is enclosed in <> brackets marking a start and an end of a block:

    paragraph

  6. Attribute is used to add useful information to a HTML tag

  7. HTML anatomy (basic):

... ...
1 Like
  1. HTML is a markup language that defines the structure of your content. It is not a programming language.
  2. It is used to structure a web page and its content.
  3. We learn HTML to construct a web page and make it look the way we want it to.
  4. An HTML tag is a letter enclosed in angle brackets that does various things like opening a paragraph.
  5. The opening tag consists of the name of the element and the closing tag consists of the same as the opening tag, except that it includes a forward slash before the element name.
  6. Attributes contain extra information about the element that you don’t want to appear in the actual content.
  7. The anatomy of an HTML document consists of the opening tag, the closing tag, the content and the element. We can also have attributes, nesting elements, empty elements.
1 Like

1:a markup language
2:it defines the structure of your content
3:we need to be able to create a front end for our users
4:a tag marks the beginning and the end of our content
5:opening tag / content / closing tag = element

content


6:extra hidden information within the element
7:
1 Like

some of the content i just posted did not show?? like my example in question 5 and all of question 7
is this because it was written in the markup language?

1 Like

HTML is like script language to show your content in web browser over the internet.
HTML Tag is used to contain some specific information like

is header .
paragraph etc.
2 Likes
  1. HTML: HyperText Markup Language. It is the traditional way to build a text only website, this lays out the general TEXT to be included in your website, it is a very basic application.
  2. It used to include text and structure of the text on your website but nothing more. you cannot buid an interactive website with HTML alone.
  3. WHY HTML?: our smart contracts will be interacting through a website, we need to learn how to build even a basic level website where our smart contracts can be accessed, think of our website as the bridge that helps us get to our smart contract application/s.
    4)Tag: it is an element with a value and a class, it is used to make something like a word or phrase and make it a hyperlink that you can link to on a different tab or window.
  4. structure?: it consists of an opening and closing tags, as well as an element and content.
  5. Atributes?: set of information you don’t want to appear as part of the context on your site, like editors notes.
  6. Anatomy of HTML?: it consits of:
1 Like
  1. Is a markup language used to define content structure
  2. It’s the basic language of Websites
  3. To enable us to quickly build front-ends for our Dapps
  4. A Tag identifies specific elements of a HTML document and encodes the way that element is displayed and interacts
  5. A Tag element consists of the tag opener ā€œ< tag-type>ā€, tag content, tag close ā€œ</tag type>ā€
  6. An attribute encodes additional properties of the element that should not be displayed as actual content
  7. The basic anatomy of a HTML document consist of following HTML elements :
    Document Type
    html tag
    <> header tag: ā€œContaining Titleā€
    <> body tag: ā€œContaining document bodyā€
    /html tag
1 Like

1. What is HTML?

HTML = How to meet ladies. (just kidding) :stuck_out_tongue:

2. What is HTML used for?

HTML is the language for browsers. A html file is like the instruction manual for programmer to tell a browser to how to draw a specific webpage.

3. Why are we learning HTML?

Good product should have a friendly interface.

With html, we could showcase our work to the world in the easiest way people can access online - with a browser.

4. What is an HTML tag?

Tags are used to tell the browser what type of elements it is going to present, so that it can format the content…like paragraph, list, image, video, etc…

5. What is the structure of an HTML tag?

An opening tag and an closing tag, normally with contents in between.
Sometime there is no content like the img tag.

6. What is an attribute?

An attribute is an extra instruction for a specific element, like class, style…

7. What is the anatomy of an HTML document?

  • doc type
  • html element
  • head & body
  • title
  • meta
1 Like
  1. HTML-hypertext markup language, that uses to struct web pages
  2. to create or to make easier the structure of web pages
  3. HTML deploys for creation of websites where we are looking for the news about ico and also to learn smart contract we have to know java. The easiest way to elaborate about java through sites
    4)Html tag makes word/image hyperlink to somewhere
    5)The right order that we cannot change it
    6)additional information about the element that we dont want to include in the visible part
  4. The order of tags that we have to follow
1 Like

1.) HTML is an acronym for ā€œHyper Text Markup Languageā€. It is a markup language for creating a web pages.

2.) HTML defines the structure of web content.

3.) We are learning HTML beacuse we want to create applications that users can actually use and therefore we have to build also the front end so that the users can access to the our applications.

4.) HTML tag is a set of characters constituting a formatted command for a Web page.

5.) Opening tag: , closing tag: </name of element>.

6.) Attributes contain extra information about the element that you don’t want to appear in the actual content.

7,) Basic atonomy of an HTML document:
DOCTYPE html,
html
head (all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers)
meta charset=ā€œutf-8ā€
title/title
/head
body (all the content that you want to show to web users when they visit your page)
/body
/html

1 Like

HTML is a 1)markup language (2)who’s code is used for web page structure and content. We are learning about HTML because (3) we should have an understanding of how to build a small website that can interact with our smart contracts.

An HTML tag is (4) a piece of code with angle brackets to start and angle brackets with forward slash included inside that shows where our element starts and when it ends. HTML tag structure consist of 5)<element ā€œattributeā€>. An attribute is the (6) type of element.

Overall, the anatomy of an HTML document will consist of a (7)tag for the whole document which is , then it’s tag with elements inside the head and closing the tag. The main part of our HTML will be the documents tag with many elements inside it with many different attributes among the elements. We close our tag then close our tag. :):sunglasses:

1 Like
  1. What is HTML?
    HyperText Markup Language

  2. What is HTML used for?
    The code that is used to structure the website and it’s content.

  3. Why are we learning HTML?
    To have a frontend to our Smart contract or DApps.

  4. What is an HTML tag?
    An HTML tag can make font bigger or smaller, it can utilize words, can make a word or
    image hyperlink to somewhere else, and so on.

  5. What is the structure of an HTML tag?
    An opening and a closing tag.

  6. What is an attribute?
    It contains extra information about the element that you don’t want to see in the actual content.

  7. What is the anatomy of an HTML document?
    the doctype
    the html element
    the body element
    the element that sets the character
    the title element

1 Like

What is HTML?
Stands for Hypertext Markup Language, it isn’t a programming language but a mark up language

What is HTML used for?
You can use HTML to create static sites

Why are we learning HTML?
We are learning HTML because it will give us a core understanding of website structures and build a foundation for further more advanced languages.

What is an HTML tag?
Used for creating elements like for example…

… is considered an opening tag of an element while…

… is the closing tag and p stands for paragraph.

What is the structure of an HTML tag?
Opening tag <>
closing tag </>

What is an attribute?
Extra information in the content that you don’t want to appear in the actual content, for example:
<class=ā€œeditorā€> class being the attribute name and editor being the value

What is the anatomy of an HTML document?
Combining individual elements to create an entire HTML page

1 Like