1.Hypertext Markup Language is the code that is used to structure a Webpage and its content.
2. To make static Webpages.
3. We make easy Websites to interact with Blockchain.
4. A tag consists of the name of the element wrapped in opening and closing angle brackets.
5. The structure of an THML tag is the name of the element wrapped in opening and closing angle brackets.
6. Attributes are extra information about the element that you dont want appear in the actual content.
7.Is the structure how to program correctly in HTML.
- What is HTML? Html is a markup language
- What is HTML used for? its used for the structuring of a webpage like for text, images and links
- Why are we learning HTML? because its the basic website design markup language
- What is an HTML tag? a tag is a piece of code between either closing or opening brackets
- What is the structure of an HTML tag? opening text
- What is an attribute? an attribute extends or changes how a element behaves or providing meta data
it should always have a space from the element name or the privious attribute if it already has one or more attributes it also needs the attribute name to be followed by an equal sign as well as to have the attribute value to be wrapped by opening and closing quotations
7. What is the anatomy of an HTML document? opening tag content then closing tag all of which together is the element or command if you will
I am trying to do some assignments using Atom.io. Somehow I end up with GitHub and from what I can tell the two are not the same yet interrelated. When I follow instructions on GitHub, âWelcomeâ and how to use the programs and sign OAuth AppsâŚetc, it mentions buying tokens. I do not want to buy tokens. I get concerned that I am in the wrong place. Seems as though there are many ways to access Atom⌠ie, Linux, Mac, Windows. (Ubuntu 16.04; flight-manual.atom.io?). Even Wiki. What is the best website to access and simply download Atom? Anybody know? Atom is a complicated site. I want the Text Editor?
- Hypertext Markup Language
- It is used to build and structure a web page and its content.
3.Because it is very important basic knowledge in how to add titles, words, paragraphs, and images into your websites. - It is used to open and close element content.
-
<p> is for opening up a paragraph content and </p>
is for closing one.
Example:<p>My cat is cool.</p>
- Additional information that is not visible in the actual content.
7.<p>Hey, I am Edsel and I love learning about crypto!</p>
Hi,
Donât you see a âDownloadâ button directly on the homepage? It usually directly starts downloading without going to github.
Or you can use the atom-windows.zip to download or the 64bit version over here - atom-x64-windows.zip
Hope this helps.
1 HTML IS hypertext markup language
2 the Html is used o enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way.
3 to build our website
4 the html tag is used to wraps all the content on the entire page and is sometimes known as the root element.
5
6 Attributes contain extra information about the element that you donât want to appear in the actual content.
7 wraps up the basics of individual HTML elements, but they arenât handy on their own.
- HTML is a âmarkupâ language articulates the layout of your content.
- HTML is used for organising webpage content. Including hyperlinks, content actions and interactions.
- We are learning HTML in order to clearly understand basic webpage structure.
- A HTML tag is âbookendsâ an element. Uses angle brackets.
- Opening tag structure is = Angle bracket, element type, angle bracket.
- And attribute contains information about the element. They are contained within the tag.
- The anatomy of an HTML document is all the individual elements that make up an entire HTML page. Doctype, Root Element, Head (Keywords), Character Set, Title (tab and bookmark) and the Body (content).
<!DOCTYPE html>
<html>
<head>
<title>HTML Reading Assignment</title>
<!-- Meta data, scripting and styling typicall goes here -->
</head>
<body>
<!--
1. What is HTML?
1. Hyper Text Markup Language
2. What is HTML used for?
1. To build a webpage in its basic form - bare minimum to build a webpage
3. Why are we learning HTML?
1. The webpage is the client which in-turn is the structure (not the logic) of the user interface (UI) that interacts with the blockchain
4. What is an HTML tag?
1. Also known as an element, the building blocks of an HTML document.
5. What is the structure of an HTML tag?
1. <some element name here> some data to present within the element </closing tag>
1. <h1>Blockchain is now!</h1>
6. What is an attribute?
1. <h1 id=âlarge-just-this-elementâ>Blockchain is now!</h1>
2. It allows for additional styling or configuration of the single element or others sharing attribute values.
7. What is the anatomy of an HTML document?
-->
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Tab Title</title>
<!-- Meta data, scripting and styling typicall goes here -->
</head>
<body>
<!-- What the world sees -->
</body>
<!-- javascript files here -->
</html>
type or paste code here
-
What is HTML?
The markup language that defines the structure of content on a website. -
What is HTML used for?
To make content appear or act in a certain way. -
Why are we learning HTML?
To learn basic coding principles and make something that works. -
What is an HTML tag?
They define an element -
What is the structure of an HTML tag?
The opening tag is the element name wrapped in angle brackets and a closing tag consisting of the element name preceded by a forward slash and also wrapped in angled brackets. -
What is an attribute?
Contains extra information about the element which you donât want appearing in the actual content. -
What is the anatomy of an HTML document?
Made up of a preamble and 5 principle elements:
-
What is HTML?
HyperText Makeup Language. Code used in programming content for web pages. -
What is HTML used for?
Itâs used as directives for building pages on the internet for interaction. -
Why are we learning HTML?
This type of coding will be useful as we begin programming DAPPs. -
What is an HTML tag?
A tag adds commands to specify a certain task or action to its content. -
What is the structure of an HTML tag?
When creating specifics to an element, you enclose a command in brackets (or âgreater than, smaller thanâ symbols) at either end of your content. Eg: content -
What is an attribute?
Its when the commands to an element donât need to be witnessed or are not necessary for viewing, but are important for functionality. Eg; if I want to link a picture to a different page sourceâŚthe viewerâs experience may be impeded by the âweblink addressâ. -
What is the anatomy of an HTML document?
Basically, HTML is a type of coding that result in specific actions to occur on a web page. This could be literature to read or write, visuals and interactive elements.
I love it! brief and to the point
1. What is HTML? It is the code that is used to structure a web page and its content.
2. What is HTML used for? It is used to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way in a web page.
3. Why are we learning HTML? To be able to develop our own websiteâs front end.
4. What is an HTML tag? It is a piece of an element that can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, etc.
5. What is the structure of an HTML tag?
6. What is an attribute? It is a piece of an element which 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?
<!--
<!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>
-->
- What is HTML? Is hyper text markup language. Is a code to structure the web page and itsâ content. This includes images, bulleted points, data tables and paragraphs. Consist of a series of elements.
- What is HTML used for? Used for web page design by using elements and tags, to make the webpage more customizable that can also reference other information or sites on the web.
- Why are we learning HTML? Because it is an essential aspect of web page development and DAP contracts.
- What is an HTML tag? Is a set of parameters and text to form a part of the web page. They isolate content within any element you create.
- What is the structure of an HTML tag? A tag begins with an opening , has usually an attribute inside and finishes with a closing âŚ
- What is an attribute? An attribute contains additional information you do not want to be seen by the viewers on the web page (actual content).
- What is the anatomy of an HTML document? I basically just typed code from the reading assignment but it is not showing up when I click save answers. It is like the code is actually interacting with this home work page, never the less that is what I did. Good practice
Questions:
. HTML is a language, which stands for hyper text mark up language.
. It defines content structure and consists of a series of elements so that it can display web pages on the internet.
. It is necessary in Blockchain so that web pages can be developed and placed on the internet.
. Tags represent the boundaries for which text can be displayed. There is the opening tag at the start and the closing tag at the end which show the start and finish of each paragraph.
. There is the opening tag at the start, containing the name of the element in brackets, and the closing tag at the end, with a slash prior to the element name. They each show the start and finish of each paragraph, respectively.
. Attributes are extra notes which contain extra information without appearing as part of the main content.
. The two main parts are the head, which contains the main structure of the page without being shown to anyone who views the page, and the body which contains the content that is displayed on the page as text.
HTML Reading Assignment
- What is HTML? HTML stands for Hypertext Markup Language, it is the code that is used to structure a web page and its content. Structured within a set of paragraphs, list of bullet points, or using a data base table.
- What is HTML used for? It is used to structure content which consist of a series of elements to make it appear a certain way.
- Why are we learning HTML? To understand code to make a web page.
- What is an HTML tag? A tag can do something to the content like make a hyperlink, italicize words, make font bigger or smaller.
- What is the structure of an HTML tag? It signifies the start and stop of what content will be affected by the tag.
- What is an attribute? Something you put within the element that does something not visible in the actual content.
- What is the anatomy of an HTML document? It is the structure in which you use the code to make the page work.
-
What is HTML?
HTML is a markup language that defines the structure of your 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. -
What is HTML used for?
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content that could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables. -
Why are we learning HTML?
To become familiar with all types of programming before we can start to make Smart Contracts. Also, it will be useful to create websites in the future. -
What is an HTML tag?
There are opening and closing tags that denote the beginning and end of a paragraph respectively. -
What is the structure of an HTML tag?
Tags generally consist of an opening and closing pair. They are written in lower case using angled brackets ie . Our first HTML tag (or element) will open and close the entire document. Inside of the element go all the other HTML elements required to create our page. -
What is an attribute?
Attributes define additional characteristics or properties of the element such as width and height of an image. Attributes are always specified in the start tag (or opening tag) and usually consists of name/value pairs like name=âvalueâ. Attribute values should always be enclosed in quotation marks. Some attributes are required for certain elements. For instance, antag must contain a src and alt attributes.
-
What is the anatomy of an HTML document?
An HTML 4 document is composed of three parts: a line containing HTML version information, a declarative header section (delimited by the HEAD element), a body, which contains the documentâs actual content.
Redirecting to âDownloadâ over and over was distracting. Your suggestions took me past the initial screen and even the second. I viewed the 10 Atom videos, took notes and installed all ten suggested. Atom is going to be useful. Great! Thank you.
Lorraine
- What is HTML? It is a markup langauge or a code.
- What is HTML used for? It is used to structure a web page and its content.
- Why are we learning HTML? Because it is the basics of making a web page that works.
- What is an HTML tag? HTML consists of elements and elements have tags. Specifically, they have opening and closing tag. It shows us which piece of content on our website will be effected in a certain way and in what way will that happen.
- What is the structure of an HTML tag? It has a name wrapped in opening and closing angle brackets. The only difference beetwen an opening and a closing tag is that the closing one also has forward slash before the name.
- What is an attribute? It is an extra piece of information about the element, but a piece of info that you donât want users of your website to actually see.
- What is the anatomy of the HTML document? It opens with !DOCTYPE html tag, then has the html tag, then head, body and always closes with closing html tag.
-
What is HTML?
HTML is the og language used to create websites. Hypertext Markup Language -
What is HTML used for?
HTML is the language used to display text, pictures, video, and other media on websites. -
Why are we learning HTML?
HTML is a foundational level coding skill needed to blossom. It is the building blocks of coding your own website and manipulating how the content appears on that page. -
What is an HTML tag?
An HTML tag allows us to change how the content appears on our website. -
What is the structure of an HTML tag?
There seem to be a lot of different type of âtagsâ we can use when writing HTML. I am not going to type it here because it screws with how my answer appears! I can see it working here! We use < > signs to change how the content appears. -
What is an attribute?
An attribute is a quality or characteristic of any tag -
What is the anatomy of an HTML document?
!DOCTYPE html
html></html
head></head
meta charset=âutf-8â
title></title
body></body
It is very interesting to see this working while I write my answers out.