From ea48a200538c6053fdfe865bed1777b04aca8d8f Mon Sep 17 00:00:00 2001 From: deeyaapatell Date: Sat, 8 Nov 2025 03:39:23 -0700 Subject: [PATCH] Added index.html with HTML markup --- index.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..3aed663 --- /dev/null +++ b/index.html @@ -0,0 +1,77 @@ + + + + + + + + Basic HTML Text Tags + + + + +
+

Basic HTML Text Tags

+
+ +
+ +
+

Marking up Text in Blocks

+

+ When you have text that is displayed in a block, usually with multiple lines, it's considered a + paragraph. Paragraph text can include words or phrases that are emphasized in some way, and they can contain links and other markup used for text (but not headings). +

+ +

+ Paragraphs are block-level elements. It may happen that you have text, like a poem, that requires some special formatting. You’ll need to ensure that each line displayed at proper length, and you can do that with the + <br> line break tags. These should not be used outside of that purpose or for formatting an address list. Don’t add line breaks to paragraphs, forms, or other page elements—use CSS for styling. +

+ +

+ Remember that you can use tags like <strong> and <em> to convey meaning in text (these are not just to make bold or italic; they add meaning!). +

+
+ + +
+

Excerpt from The Raven – a Poem by Edgar Allen Poe

+

+ Once upon a midnight dreary, while I pondered, weak and weary,
+ Over many a quaint and curious volume of forgotten lore—
+ While I nodded, nearly napping, suddenly there came a tapping,
+ As of someone gently rapping, rapping at my chamber door—
+ "'Tis some visitor," I muttered, "tapping at my chamber door—
+ Only this and nothing more." +

+
+ + +
+

Marking Up Text to Convey Meaning

+

+ Sometimes, you are marking up small pieces of text, including single letters and words, to convey more meaning. When doing this, you’ll want to use the most appropriate tags you can. +

+ +

+ For example, if your paper offered search results, it’s likely that you’d want to highlight the terms the user searched for in the results you return. If the term was + area and that term appeared within paragraphs you returned, those words should be highlighted in that paragraph. +

+ +

+ The primary focus area must be chosen from one of the four GIT + focus areas (Front-End Web Design and Development, Commercial Photography and Video, Digital Design: Print and Publishing, 2D/3D Animation). +

+ +

+ We used the <b> and <i> tags above, but we haven’t talked about the + <u> tags. These are not often used, as they confuse the user since they style text with an underline, the same way that links do by default. A good use for these is to highlight spelling errors. +

+
+
+ + + +