Receiving Helpdesk

html tags list with examples

by Aniyah Mills Published 4 years ago Updated 2 years ago

HTML Tags With Example

  • <b> tag. The <b> tag is used to make a word or group of the word special to draw the reader's attention. ...
  • <i> tag. The <i> tag is used to format the text in an alternative mood or voice to set off from the normal text.
  • <u> tag. The <u> tag is used to represent a non-literary explanation. ...
  • <s> tag. The <s> tag display text by making a strikethrough with it. ...

HTML Tags Chart source: www.web-source.net
TagNameBrowser View
<BIG>big (text)Example
<BODY>body of documentContents of your webpage
<BR>line breakThe contents of your page The contents of your page
54 more rows

Full Answer

What are the most common HTML tags?

of the most common HTML tags, a note on the <PRE> element, a note on the <Q> elementa note on special characters, a note on structural versus formatting elements, and a note on the meaning of "deprecated". Back to top Note on <PRE> </PRE> : The PRE element is used for pre-formatted text.

What are the different kinds of HTML tags?

We have divided HTML tags based on the following classifications:

  1. Paired and Unpaired Tags Following are the paired and unpaired tags in HTML explained in detail with the help of examples. ...
  2. Self-Closing Tags Self-Closing Tags are those HTML tags that do not have a partner tag, where the first tag is the only necessary tag that is valid for the ...
  3. Utility-Based Tags

How to display tags in a HTML list?

HTML Unordered Lists

  • Unordered HTML List. An unordered list starts with the <ul> tag. ...
  • Unordered HTML List - Choose List Item Marker. The CSS list-style-type property is used to define the style of the list item marker.
  • Nested HTML Lists. ...
  • Horizontal List with CSS. ...
  • Chapter Summary
  • HTML List Tags. ...

What are the four main tags on HTML?

To build any webpage you will need four primary tags: <html>, <head>, <title> and <body>. These are all container tags and must appear as pairs with a beginning and an ending. Here is a diagram, showing the two main parts and the primary tags. Every HTML document begins and ends with the <html> tag.

What are the 10 basic tags of HTML?

Your First 10 HTML Tags … — The root element. ... … — The document head. ... — The page title. ... … — The page's content. ...

— A section heading. ...

— A paragraph. ... — A link. ... — An image.More items...•

What are HTML tags and examples?

In this section, we are going to look at the HTML tags list with examples....1. HTML Basic Tags.TagDescription

It defines the paragraph in a webpageIt is used to write comments in HTML documents
It defines a line break


It creates a horizontal line in a webpage5 more rows•Jun 23, 2021

What is HTML write any 10 tags with example?

10 HTML Tags

-

Heading or Bold / StrongAnchor
    &
  • Unordered List & List Item
    Blockquote5 more rows

    What are the 12 basic HTML tags?

    HTML Tags in Logical OrderHead Tag. Defines the head section of the HTML page and provides information to the browser about the content of the web page. ... Link Tag. ... Body Tag. ... Division Tag. ... Heading Tag (HTML5 h1-h6 Element) ... The Paragraph Tag. ... Anchor Tag. ... Image Tag.More items...•

    What is tag example?

    An example of a tag is the brand name label on the inside of a shirt. An example of a tag is a price marking on a mug at a garage sale. An example of a tag is a "Hello, my name is..." sticker given out at a meeting.

    What are the 3 types of HTML tags?

    Top 3 Types of Tags in HTMLPaired and Unpaired Tags. Following are the paired and unpaired tags in HTML explained in detail with the help of examples. ... Self-Closing Tags. ... Utility-Based Tags.

    What are the 20 tags in HTML?

    Top 20 Fundamental HTML Tags You Must Knowhtml. It is the most elementary and basic block of the HTML document. ... head. Head tag is one of the most crucial tags used in HTML and web designing. ... title. The title tag defines the title of the webpage. ... body. The body tag consists of the content of the HTML. ... div. ... span. ... Anchor. ... br.More items...

    What are the 4 basic HTML tags?

    There is a range of HTML tags, they help you to design your web page. There are four required tags in HTML. These are html, title, head and body. The table below shows you the opening and closing tag, a description and an example.

    How many types tags are there in HTML?

    HTML tags can be of two types: Paired Tags. Singular Tags.

    What are the lists in HTML?

    There are three different types of HTML lists:Ordered List or Numbered List (ol)Unordered List or Bulleted List (ul)Description List or Definition List (dl)

    What are HTML basic tags?

    Basic HTMLTagDescriptionDefines an HTML documentContains metadata/information for the documentDefines a title for the document<body>Defines the document's body6 more rows </p> <div align="center"> </div> <h2 class="mt-5 mb-3"> What is HTML tag? </h2> <p> HTML tags are<strong> keywords used in HTML to display web-pages with certain properties. </strong> They are further used for defining HTML elements. An HTML element consists of a starting tag, some content, and an ending tag. The web browser reads the HTML document from top to bottom, left to right. </p> <h2 class="mt-5 mb-3"> Why are HTML tags important? </h2> <p> HTML tags are of utmost importance.<strong> They help in defining elements with varied properties in an HTML document. </strong> We’ve looked at some of the commonly used HTML tags- head tags, text-formatting tags, link tags, list tags, table tags, form tags, image and object tags, scripting tags, etc. </p> <h2 class="mt-5 mb-3"> What are brackets in HTML? </h2> <p> The ‘<>’ brackets contain an HTML tag. There are two types of HTML tags- empty tags or singleton tags and container tags. Singleton tags or empty tags do not contain any content such as an image or a paragraph and hence do not need to be closed, whereas container tags should be closed. </p> <h2 class="mt-5 mb-3"> Why do we need HTML tags? </h2> <p> HTML tags are used<strong> to create HTML documents and render their properties. </strong> Each HTML tags have different properties. An HTML file must have some essential tags so that web browser can differentiate between a simple text and HTML text. You can use as many tags you want as per your code requirement. </p> <h2 class="mt-5 mb-3"> What does a br tag mean? </h2> <p> Some HTML tags are not closed, for example br and hr. <br> Tag: br stands for<strong> break line, </strong> it breaks the line of the code. <hr> Tag: hr stands for Horizontal Rule. This tag is used to put a line across the webpage. </p> <h2 class="mt-5 mb-3"> Why do HTML files have different properties? </h2> <p> Each HTML tags have different properties. An HTML file<strong> must have some essential tags so that web browser can differentiate between a simple text and HTML text. </strong> You can use as many tags you want as per your code requirement. All HTML tags must enclosed within < > these brackets. Every tag in HTML perform different tasks. </p> <h2 class="mt-5 mb-3"> Do HTML tags have to be enclosed in brackets? </h2> <p> All<strong> HTML tags must enclosed within < > these brackets. </strong> </p> <h2 class="mt-5 mb-3"> What is a table tag in HTML? </h2> <p> HTML has <table> tag to create table. <table> tag consist of <tr> (table row) tags. And each table row tags can have <th> (table header) or <td> (table data) tags. </p> <h2 class="mt-5 mb-3"> What is HTML code? </h2> <p> Knowing the syntax of these HTML tags will help you at every stage of your web page development. <strong>HTML is markup language and it is used to create web pages. </strong> You can run HTML code in the browser so you don’t need any external software to test the HTML code from this tutorial. Let’s start…. </p> <h2 class="mt-5 mb-3"> How are items in an ordered list listed? </h2> <p> Items in the ordered list are listed<strong> by ascending numbers. </strong> </p> <h2 class="mt-5 mb-3"> What is the link text called? </h2> <p> Here, the link text is also called as<strong> anchor text. </strong> </p> <h2 class="mt-5 mb-3"> Can you add a link to HTML? </h2> <p> You can add links in your HTML text. </p> <h2 class="mt-5 mb-3"> Can you create HTML without knowing the syntax? </h2> <p> With the simple drag and drop options, you can create HTML objects without worrying about syntax. But,<strong> it is still necessary to know the basic syntax </strong> for a better understanding of HTML and web development. </p> <h2 class="mt-5 mb-3"> What is HTML list? </h2> <p> HTML lists<strong> allow web developers to group a set of related items in lists. </strong> </p> <h2 class="mt-5 mb-3"> What is a description list? </h2> <p> A description list is<strong> a list of terms, with a description of each term. </strong> The <dl> tag defines the description list, the <dt> tag defines the term (name), and the <dd> tag describes each term: </p> <h2 class="mt-5 mb-3"> What does an ordered list start with? </h2> <p> An ordered list starts with the<strong> <ol> tag. </strong> Each list item starts with the <li> tag. </p> <h2 class="mt-5 mb-3"> HTML Tags List </h2> <p> HTML stands for HyperText Markup Language, which is the most widely used language on the Web to develop web pages. HTML was created by Berners-Lee in 1991 but “HTML 2.0” was the first standard HTML specification which was published in 1995. </p> <h2 class="mt-5 mb-3"> HTML Tag </h2> <p> As told earlier, HTML is a markup language and makes use of various tags to format the content. These tags are enclosed within angle brackets <Tag Name>. Except few tags, most of the tags have their corresponding closing tags. For example <html> has its closing tag </html> and <body> tag has its closing tag </body> tag etc. </p> <h2 class="mt-5 mb-3"> Download HTML Tags List PDF </h2> <p> Click on the download button to download ‘HTML Tags List PDF’. To view this PDF file you must have a PDF reader application on your phone. </p> <h2 class="mt-5 mb-3"> What is HTML control? </h2> <p> <strong>Control for entering a numeric value in a known range. </strong> The<strong> HTMLControl for entering a numeric value in a known range. </strong> The HTML<meter>range or Elementa fractional represents value. either a scalar value within a known </p> <h2 class="mt-5 mb-3"> What is a document.metadata)scripts nd styleTheabout HTML? </h2> <p> Document.(metadata)scripts nd styleTheabout HTML<strong> she thets. <head>document, element including provides its title general and inksinformation to itsFirst element of the HTML document. </strong> Collection of metadata for the </p> <h2 class="mt-5 mb-3"> What is an anis in HTML? </h2> <p> <option>within a <select>, element anis used<optgroup> to create or a a control <datalist> representing HTML5 element. an itemSingle option within a select control. In a Web form, the HTML </p> <h2 class="mt-5 mb-3"> What does emphasis mean in HTML? </h2> <p> Text that should be emphasized. The HTML element emphasis<strong> <em>marksnested,emphasis. </strong> text with that each has level stress of nestingemphasis. indicating The <em> a greater element degree can be of </p> <h2 class="mt-5 mb-3"> What does elementthatnavigation links mean? </h2> <p> elementthatnavigation links (HTML to links.<strong> other Navigation pages or Element)to parts within represents the p age: section a section of a pagewithA section of a </strong> page that links to other pages. The HTML <nav> </p> <h2 class="mt-5 mb-3"> What is elementprogram.font? </h2> <p> elementprogram.font (such intended It as is<strong> Lucida </strong> usually to Console). identifyisplayed sample in the output browser's from default a computer monotypeSample output of a program. The HTML <samp> element is an </p> <h2 class="mt-5 mb-3"> Creating Html Paragraph </h2> <p> </p> <h2 class="mt-5 mb-3"> Setting Text Header in Html </h2> <p> </p> <h2 class="mt-5 mb-3"> Different Html Tags For Text Formatting </h2> <p> </p> <h2 class="mt-5 mb-3"> How to Add Table in Html? </h2> <p> </p> <h2 class="mt-5 mb-3"> Linking Other Pages in Html </h2> <p> </p> <h2 class="mt-5 mb-3"> How to Create List in Html? </h2> <p> <ul class="b_vList b_divsec"><li data-priority=""><div>There are two types of<strong> list-</strong> an ordered<strong> list</strong> and an unordered<strong> list. Tag</strong> <ul> is used for unordered<strong> list. Tag</strong> <ol>is used for the ordered<strong> list.</strong> Here, <li>is<strong> list</strong> item<strong> tag.</strong> An Unordered<strong> HTML List Example:</strong> An Ordered<strong> HTML List Example:</strong> Items in the ordered<strong> list</strong> are listed by ascending numbers.</div></li></ul><a href="https://www.csestack.org/basic-html-tags-example/" h="ID=SERP,5567.1">See more on csestack.org</a> </p> <h2 class="mt-5 mb-3"> How to Add Images to Your Html page? </h2> <p> </p> <div class="mt-5 mb-3"> <h2 class="title">Popular Posts:</h2> <li class="list-group-item"> 1. <a href="https://receivinghelpdesk.com/ask/how-fast-does-a-pin-oak-grow" title="how fast does a pin oak grow"> how fast does a pin oak grow <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 2. <a href="https://receivinghelpdesk.com/ask/what-are-the-side-effects-of-dicalcium-phosphate" title="what are the side effects of dicalcium phosphate"> what are the side effects of dicalcium phosphate <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 3. <a href="https://receivinghelpdesk.com/ask/what-do-the-turtles-say-in-finding-nemo" title="what do the turtles say in finding nemo"> what do the turtles say in finding nemo <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 4. <a href="https://receivinghelpdesk.com/ask/how-much-weight-can-a-futon-hold" title="how much weight can a futon hold"> how much weight can a futon hold <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 5. <a href="https://receivinghelpdesk.com/ask/12-18-frame-size" title="12*18 frame size"> 12*18 frame size <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 6. <a href="https://receivinghelpdesk.com/ask/qu-caractersticas-tiene-el-narrador-deficiente" title="qu caractersticas tiene el narrador deficiente"> qu caractersticas tiene el narrador deficiente <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 7. <a href="https://receivinghelpdesk.com/ask/dake-s-annotated-reference-bible-pdf" title="dake's annotated reference bible pdf"> dake's annotated reference bible pdf <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 8. <a href="https://receivinghelpdesk.com/ask/do-boiled-eggs-make-you-fat" title="do boiled eggs make you fat"> do boiled eggs make you fat <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 9. <a href="https://receivinghelpdesk.com/ask/does-raid-multi-insect-kill-fleas" title="does raid multi insect kill fleas"> does raid multi insect kill fleas <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> <li class="list-group-item"> 10. <a href="https://receivinghelpdesk.com/ask/what-is-it-called-when-you-hit-the-top-of-a-beer-bottle" title="what is it called when you hit the top of a beer bottle"> what is it called when you hit the top of a beer bottle <sup><i class="fa fa-external-link" aria-hidden="true"></i></sup></a> </li> </div> </div> <!--//container--> </div> </article> <!--*********************************************************************************************************--> <!--************ FOOTER *************************************************************************************--> <!--*********************************************************************************************************--> <div class="px-3 py-5 p-md-5"> <a href='https://receivinghelpdesk.com/ask/sitemap/A' class="btn btn-outline-primary text-center mt-2 "><strong>A</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/B' class="btn btn-outline-primary text-center mt-2 "><strong>B</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/C' class="btn btn-outline-primary text-center mt-2 "><strong>C</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/D' class="btn btn-outline-primary text-center mt-2 "><strong>D</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/E' class="btn btn-outline-primary text-center mt-2 "><strong>E</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/F' class="btn btn-outline-primary text-center mt-2 "><strong>F</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/G' class="btn btn-outline-primary text-center mt-2 "><strong>G</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/H' class="btn btn-outline-primary text-center mt-2 "><strong>H</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/I' class="btn btn-outline-primary text-center mt-2 "><strong>I</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/J' class="btn btn-outline-primary text-center mt-2 "><strong>J</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/K' class="btn btn-outline-primary text-center mt-2 "><strong>K</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/L' class="btn btn-outline-primary text-center mt-2 "><strong>L</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/M' class="btn btn-outline-primary text-center mt-2 "><strong>M</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/N' class="btn btn-outline-primary text-center mt-2 "><strong>N</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/O' class="btn btn-outline-primary text-center mt-2 "><strong>O</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/P' class="btn btn-outline-primary text-center mt-2 "><strong>P</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/Q' class="btn btn-outline-primary text-center mt-2 "><strong>Q</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/R' class="btn btn-outline-primary text-center mt-2 "><strong>R</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/S' class="btn btn-outline-primary text-center mt-2 "><strong>S</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/T' class="btn btn-outline-primary text-center mt-2 "><strong>T</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/U' class="btn btn-outline-primary text-center mt-2 "><strong>U</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/V' class="btn btn-outline-primary text-center mt-2 "><strong>V</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/W' class="btn btn-outline-primary text-center mt-2 "><strong>W</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/X' class="btn btn-outline-primary text-center mt-2 "><strong>X</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/Y' class="btn btn-outline-primary text-center mt-2 "><strong>Y</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/Z' class="btn btn-outline-primary text-center mt-2 "><strong>Z</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/1' class="btn btn-outline-primary text-center mt-2 "><strong>1</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/2' class="btn btn-outline-primary text-center mt-2 "><strong>2</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/3' class="btn btn-outline-primary text-center mt-2 "><strong>3</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/4' class="btn btn-outline-primary text-center mt-2 "><strong>4</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/5' class="btn btn-outline-primary text-center mt-2 "><strong>5</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/6' class="btn btn-outline-primary text-center mt-2 "><strong>6</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/7' class="btn btn-outline-primary text-center mt-2 "><strong>7</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/8' class="btn btn-outline-primary text-center mt-2 "><strong>8</strong></a> <a href='https://receivinghelpdesk.com/ask/sitemap/9' class="btn btn-outline-primary text-center mt-2 "><strong>9</strong></a> </div> <footer class="footer text-center py-2 theme-bg-dark"> <small class="copyright">Designed with <i class="fas fa-heart" style="color: #fb866a;"></i> by <a href="#" target="_blank">Receiving Helpdesk</a> <div id="version_check"> Copyright © 2022 <a href="https://receivinghelpdesk.com/ask">Receiving Helpdesk</a> | version 5.2.4 (commit d0adbc) Laravel v 8.83.24 | (PHP v8.3.21)</div> </small> </footer> </div> <!--//main-wrapper--> <!-- Javascript --> <script src="https://receivinghelpdesk.com/ask/themes/DevBlog/assets/plugins/popper.min.js"></script> <script src="https://receivinghelpdesk.com/ask/themes/DevBlog/assets/plugins/bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript"> var phpdebugbar = new PhpDebugBar.DebugBar(); phpdebugbar.addIndicator("php_version", new PhpDebugBar.DebugBar.Indicator({"icon":"code","tooltip":"PHP Version"}), "right"); phpdebugbar.addTab("messages", new PhpDebugBar.DebugBar.Tab({"icon":"list-alt","title":"Messages", "widget": new PhpDebugBar.Widgets.MessagesWidget()})); phpdebugbar.addIndicator("time", new PhpDebugBar.DebugBar.Indicator({"icon":"clock-o","tooltip":"Request Duration"}), "right"); phpdebugbar.addTab("timeline", new PhpDebugBar.DebugBar.Tab({"icon":"tasks","title":"Timeline", "widget": new PhpDebugBar.Widgets.TimelineWidget()})); phpdebugbar.addIndicator("memory", new PhpDebugBar.DebugBar.Indicator({"icon":"cogs","tooltip":"Memory Usage"}), "right"); phpdebugbar.addTab("exceptions", new PhpDebugBar.DebugBar.Tab({"icon":"bug","title":"Exceptions", "widget": new PhpDebugBar.Widgets.ExceptionsWidget()})); phpdebugbar.addTab("views", new PhpDebugBar.DebugBar.Tab({"icon":"leaf","title":"Views", "widget": new PhpDebugBar.Widgets.TemplatesWidget()})); phpdebugbar.addTab("route", new PhpDebugBar.DebugBar.Tab({"icon":"share","title":"Route", "widget": new PhpDebugBar.Widgets.HtmlVariableListWidget()})); phpdebugbar.addIndicator("currentroute", new PhpDebugBar.DebugBar.Indicator({"icon":"share","tooltip":"Route"}), "right"); phpdebugbar.addTab("queries", new PhpDebugBar.DebugBar.Tab({"icon":"database","title":"Queries", "widget": new PhpDebugBar.Widgets.LaravelSQLQueriesWidget()})); phpdebugbar.addTab("models", new PhpDebugBar.DebugBar.Tab({"icon":"cubes","title":"Models", "widget": new PhpDebugBar.Widgets.HtmlVariableListWidget()})); phpdebugbar.addTab("livewire", new PhpDebugBar.DebugBar.Tab({"icon":"bolt","title":"Livewire", "widget": new PhpDebugBar.Widgets.VariableListWidget()})); phpdebugbar.addTab("emails", new PhpDebugBar.DebugBar.Tab({"icon":"inbox","title":"Mails", "widget": new PhpDebugBar.Widgets.MailsWidget()})); phpdebugbar.addTab("gate", new PhpDebugBar.DebugBar.Tab({"icon":"list-alt","title":"Gate", "widget": new PhpDebugBar.Widgets.MessagesWidget()})); phpdebugbar.addTab("session", new PhpDebugBar.DebugBar.Tab({"icon":"archive","title":"Session", "widget": new PhpDebugBar.Widgets.VariableListWidget()})); phpdebugbar.addTab("request", new PhpDebugBar.DebugBar.Tab({"icon":"tags","title":"Request", "widget": new PhpDebugBar.Widgets.HtmlVariableListWidget()})); phpdebugbar.setDataMap({ "php_version": ["php.version", ], "messages": ["messages.messages", []], "messages:badge": ["messages.count", null], "time": ["time.duration_str", '0ms'], "timeline": ["time", {}], "memory": ["memory.peak_usage_str", '0B'], "exceptions": ["exceptions.exceptions", []], "exceptions:badge": ["exceptions.count", null], "views": ["views", []], "views:badge": ["views.nb_templates", 0], "route": ["route", {}], "currentroute": ["route.uri", ], "queries": ["queries", []], "queries:badge": ["queries.nb_statements", 0], "models": ["models.data", {}], "models:badge": ["models.count", 0], "livewire": ["livewire.data", {}], "livewire:badge": ["livewire.count", 0], "emails": ["swiftmailer_mails.mails", []], "emails:badge": ["swiftmailer_mails.count", null], "gate": ["gate.messages", []], "gate:badge": ["gate.count", null], "session": ["session", {}], "request": ["request", {}] }); phpdebugbar.restoreState(); phpdebugbar.ajaxHandler = new PhpDebugBar.AjaxHandler(phpdebugbar, undefined, true); phpdebugbar.ajaxHandler.bindToFetch(); phpdebugbar.ajaxHandler.bindToXHR(); phpdebugbar.setOpenHandler(new PhpDebugBar.OpenHandler({"url":"https:\/\/receivinghelpdesk.com\/ask\/_debugbar\/open"})); phpdebugbar.addDataSet({"__meta":{"id":"X832b0a94a87e8b011d8ee081e8e35f01","datetime":"2025-06-27 13:10:55","utime":1751010055.991612,"method":"GET","uri":"\/ask\/html-tags-list-with-examples","ip":"172.69.17.167"},"php":{"version":"8.3.21","interface":"fpm-fcgi"},"messages":{"count":10,"messages":[{"message":"[13:10:54] LOG.warning: Creation of dynamic property Barryvdh\\Debugbar\\DataFormatter\\QueryFormatter::$cloner is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/vendor\/maximebf\/debugbar\/src\/DebugBar\/DataFormatter\/DataFormatter.php on line 23","message_html":null,"is_string":false,"label":"warning","time":1751010054.373258,"collector":"log"},{"message":"[13:10:54] LOG.warning: Creation of dynamic property Barryvdh\\Debugbar\\DataFormatter\\QueryFormatter::$dumper is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/vendor\/maximebf\/debugbar\/src\/DebugBar\/DataFormatter\/DataFormatter.php on line 24","message_html":null,"is_string":false,"label":"warning","time":1751010054.373306,"collector":"log"},{"message":"[13:10:54] LOG.warning: Callables of the form [\"Swift_SmtpTransport\", \"Swift_Transport_EsmtpTransport::__construct\"] are deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/vendor\/swiftmailer\/swiftmailer\/lib\/classes\/Swift\/SmtpTransport.php on line 36","message_html":null,"is_string":false,"label":"warning","time":1751010054.374488,"collector":"log"},{"message":"[13:10:54] LOG.warning: Creation of dynamic property Barryvdh\\Debugbar\\DataFormatter\\SimpleFormatter::$cloner is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/vendor\/maximebf\/debugbar\/src\/DebugBar\/DataFormatter\/DataFormatter.php on line 23","message_html":null,"is_string":false,"label":"warning","time":1751010054.375331,"collector":"log"},{"message":"[13:10:54] LOG.warning: Creation of dynamic property Barryvdh\\Debugbar\\DataFormatter\\SimpleFormatter::$dumper is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/vendor\/maximebf\/debugbar\/src\/DebugBar\/DataFormatter\/DataFormatter.php on line 24","message_html":null,"is_string":false,"label":"warning","time":1751010054.375372,"collector":"log"},{"message":"[13:10:54] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Casts\/Json.php on line 20","message_html":null,"is_string":false,"label":"warning","time":1751010054.390442,"collector":"log"},{"message":"[13:10:54] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Casts\/Json.php on line 20","message_html":null,"is_string":false,"label":"warning","time":1751010054.390494,"collector":"log"},{"message":"[13:10:54] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Casts\/Json.php on line 20","message_html":null,"is_string":false,"label":"warning","time":1751010054.390826,"collector":"log"},{"message":"[13:10:54] LOG.warning: json_decode(): Passing null to parameter #1 ($json) of type string is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Casts\/Json.php on line 20","message_html":null,"is_string":false,"label":"warning","time":1751010054.390885,"collector":"log"},{"message":"[13:10:54] LOG.warning: mt_rand(): Passing null to parameter #2 ($max) of type int is deprecated in \/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Http\/Controllers\/Frontend\/json_data\/PostController.php on line 91","message_html":null,"is_string":false,"label":"warning","time":1751010054.3912,"collector":"log"}]},"time":{"start":1751010054.354805,"end":1751010055.991645,"duration":1.6368401050567627,"duration_str":"1.64s","measures":[{"label":"Booting","start":1751010054.354805,"relative_start":0,"end":1751010054.371832,"relative_end":1751010054.371832,"duration":0.017026901245117188,"duration_str":"17.03ms","params":[],"collector":null},{"label":"Application","start":1751010054.372395,"relative_start":0.017590045928955078,"end":1751010055.991647,"relative_end":1.9073486328125e-6,"duration":1.6192519664764404,"duration_str":"1.62s","params":[],"collector":null}]},"memory":{"peak_usage":1917336,"peak_usage_str":"2MB"},"exceptions":{"count":0,"exceptions":[]},"views":{"nb_templates":7,"templates":[{"name":"themes.DevBlog.content.post (resources\/views\/themes\/DevBlog\/content\/post.blade.php)","param_count":34,"params":["post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar"],"type":"blade"},{"name":"themes.DevBlog.layouts.master (resources\/views\/themes\/DevBlog\/layouts\/master.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"},{"name":"themes.DevBlog.panels.head (resources\/views\/themes\/DevBlog\/panels\/head.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"},{"name":"themes.DevBlog.panels.header (resources\/views\/themes\/DevBlog\/panels\/header.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"},{"name":"themes.DevBlog.panels.navbar (resources\/views\/themes\/DevBlog\/panels\/navbar.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"},{"name":"themes.DevBlog.panels.footer (resources\/views\/themes\/DevBlog\/panels\/footer.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"},{"name":"themes.DevBlog.panels.scripts (resources\/views\/themes\/DevBlog\/panels\/scripts.blade.php)","param_count":41,"params":["__env","app","errors","post","postContent","author","updated_at","bing_rich_snippet_text","bing_rich_snippet_link","bing_related_keywords","google_related_keywords","bing_news_title","bing_news_description","bing_videos","bing_images","bing_search_result_title","bing_search_result_description","bing_search_result_url","bing_paa_questions","bing_paa_answers","bing_slider_faq_questions","bing_slider_faq_answers","bing_pop_faq_questions","bing_pop_faq_answers","bing_tab_faq_questions","bing_tab_faq_answers","google_faq_questions","google_faq_answers","google_rich_snippet","google_search_result","indexedArray","total_images","total_videos","settings","url_current","menus","sidebar","i","__currentLoopData","loop","item"],"type":"blade"}]},"route":{"uri":"GET {post}","middleware":"web, checkdate","as":"post.show","controller":"App\\Http\\Controllers\\Frontend\\json_data\\PostController@show","namespace":null,"where":[],"file":"<a href=\"phpstorm:\/\/open?file=\/home\/runcloud\/webapps\/ReceivingHelpDesk\/askcode\/app\/Http\/Controllers\/Frontend\/json_data\/PostController.php&line=18\">app\/Http\/Controllers\/Frontend\/json_data\/PostController.php:18-166<\/a>"},"queries":{"nb_statements":7,"nb_failed_statements":0,"accumulated_duration":1.59488,"accumulated_duration_str":"1.59s","statements":[{"sql":"select * from `posts` where `published_at` <= '2025-06-27 13:10:54' and `slug` = 'html-tags-list-with-examples' and `posts`.`deleted_at` is null limit 1","type":"query","params":[],"bindings":["2025-06-27 13:10:54","html-tags-list-with-examples"],"hints":null,"show_copy":false,"backtrace":[{"index":15,"namespace":null,"name":"\/app\/Providers\/RouteServiceProvider.php","line":54},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Router.php","line":842},{"index":19,"namespace":null,"name":"Route binding","line":39},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":167},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Http\/Middleware\/VerifyCsrfToken.php","line":78}],"duration":0.00257,"duration_str":"2.57ms","stmt_id":"\/app\/Providers\/RouteServiceProvider.php:54","connection":"receivinghelpdeskask","start_percent":0,"width_percent":0.161},{"sql":"select * from `json_post_contents` where `json_post_contents`.`post_id` = 111142 and `json_post_contents`.`post_id` is not null and `rewrite_id` = 0","type":"query","params":[],"bindings":["111142","0"],"hints":null,"show_copy":false,"backtrace":[{"index":19,"namespace":"middleware","name":"checkdate","line":30},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":167},{"index":21,"namespace":null,"name":"\/vendor\/laravel\/jetstream\/src\/Http\/Middleware\/ShareInertiaData.php","line":61},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Pipeline\/Pipeline.php","line":167},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Middleware\/SubstituteBindings.php","line":50}],"duration":0.00344,"duration_str":"3.44ms","stmt_id":"middleware::checkdate:30","connection":"receivinghelpdeskask","start_percent":0.161,"width_percent":0.216},{"sql":"select * from `nova_menu_menus` where `slug` = 'header' limit 1","type":"query","params":[],"bindings":["header"],"hints":null,"show_copy":false,"backtrace":[{"index":15,"namespace":null,"name":"\/vendor\/outl1ne\/nova-menu-builder\/src\/helpers.php","line":32},{"index":17,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php","line":54},{"index":18,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":19,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":261},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":205}],"duration":0.00038,"duration_str":"380\u03bcs","stmt_id":"\/vendor\/outl1ne\/nova-menu-builder\/src\/helpers.php:32","connection":"receivinghelpdeskask","start_percent":0.377,"width_percent":0.024},{"sql":"select * from `nova_menu_menu_items` where `nova_menu_menu_items`.`menu_id` = 1 and `nova_menu_menu_items`.`menu_id` is not null and `parent_id` is null order by `parent_id` asc, `order` asc, `name` asc","type":"query","params":[],"bindings":["1"],"hints":null,"show_copy":false,"backtrace":[{"index":19,"namespace":null,"name":"\/vendor\/outl1ne\/nova-menu-builder\/src\/Models\/Menu.php","line":35},{"index":20,"namespace":null,"name":"\/vendor\/outl1ne\/nova-menu-builder\/src\/helpers.php","line":33},{"index":22,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php","line":54},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":261}],"duration":0.00028000000000000003,"duration_str":"280\u03bcs","stmt_id":"\/vendor\/outl1ne\/nova-menu-builder\/src\/Models\/Menu.php:35","connection":"receivinghelpdeskask","start_percent":0.401,"width_percent":0.018},{"sql":"select * from `nova_menu_menu_items` where `nova_menu_menu_items`.`parent_id` in (1) order by `order` asc","type":"query","params":[],"bindings":[],"hints":null,"show_copy":false,"backtrace":[{"index":24,"namespace":null,"name":"\/vendor\/outl1ne\/nova-menu-builder\/src\/Models\/Menu.php","line":35},{"index":25,"namespace":null,"name":"\/vendor\/outl1ne\/nova-menu-builder\/src\/helpers.php","line":33},{"index":27,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Controller.php","line":54},{"index":28,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/ControllerDispatcher.php","line":45},{"index":29,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Routing\/Route.php","line":261}],"duration":0.00019,"duration_str":"190\u03bcs","stmt_id":"\/vendor\/outl1ne\/nova-menu-builder\/src\/Models\/Menu.php:35","connection":"receivinghelpdeskask","start_percent":0.418,"width_percent":0.012},{"sql":"select `id`, `post_title`, `slug` from `posts` where `status` = 'publish' and `posts`.`deleted_at` is null order by RAND() limit 10","type":"query","params":[],"bindings":["publish"],"hints":null,"show_copy":false,"backtrace":[{"index":14,"namespace":null,"name":"\/app\/View\/Composers\/SidebarView.php","line":22},{"index":15,"namespace":null,"name":"\/app\/View\/Composers\/SidebarView.php","line":12},{"index":16,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/View\/Concerns\/ManagesEvents.php","line":124},{"index":17,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/View\/Concerns\/ManagesEvents.php","line":162},{"index":20,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/View\/Concerns\/ManagesEvents.php","line":177}],"duration":1.58744,"duration_str":"1.59s","stmt_id":"\/app\/View\/Composers\/SidebarView.php:22","connection":"receivinghelpdeskask","start_percent":0.43,"width_percent":99.534},{"sql":"select * from `fake_users` where `fake_users`.`id` = 34133 limit 1","type":"query","params":[],"bindings":["34133"],"hints":null,"show_copy":false,"backtrace":[{"index":21,"namespace":"view","name":"2dd102cf0462e89a4d4d8bc77355d767652bf9aa","line":15},{"index":23,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/Filesystem\/Filesystem.php","line":108},{"index":24,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/View\/Engines\/PhpEngine.php","line":58},{"index":25,"namespace":null,"name":"\/vendor\/livewire\/livewire\/src\/ComponentConcerns\/RendersLivewireComponents.php","line":69},{"index":26,"namespace":null,"name":"\/vendor\/laravel\/framework\/src\/Illuminate\/View\/Engines\/CompilerEngine.php","line":61}],"duration":0.00058,"duration_str":"580\u03bcs","stmt_id":"view::2dd102cf0462e89a4d4d8bc77355d767652bf9aa:15","connection":"receivinghelpdeskask","start_percent":99.964,"width_percent":0.036}]},"models":{"data":{"App\\Models\\FakeUser":1,"Outl1ne\\MenuBuilder\\Models\\MenuItem":1,"Outl1ne\\MenuBuilder\\Models\\Menu":1,"App\\Models\\JsonPostContent":1,"App\\Models\\Post":11},"count":15},"livewire":{"data":[],"count":0},"swiftmailer_mails":{"count":0,"mails":[]},"gate":{"count":0,"messages":[]},"session":{"_token":"2IcWidPeadeDBXT9NYnkfu4ArZMd7xTBFMbJvmI0","_previous":"array:1 [\n \"url\" => \"https:\/\/receivinghelpdesk.com\/ask\/html-tags-list-with-examples\"\n]","_flash":"array:2 [\n \"old\" => []\n \"new\" => []\n]","PHPDEBUGBAR_STACK_DATA":"[]"},"request":{"path_info":"\/html-tags-list-with-examples","status_code":"<pre class=sf-dump id=sf-dump-85405714 data-indent-pad=\" \"><span class=sf-dump-num>200<\/span>\n<\/pre><script>Sfdump(\"sf-dump-85405714\", {\"maxDepth\":0})<\/script>\n","status_text":"OK","format":"html","content_type":"text\/html; charset=UTF-8","request_query":"<pre class=sf-dump id=sf-dump-488312316 data-indent-pad=\" \">[]\n<\/pre><script>Sfdump(\"sf-dump-488312316\", {\"maxDepth\":0})<\/script>\n","request_request":"<pre class=sf-dump id=sf-dump-788772565 data-indent-pad=\" \">[]\n<\/pre><script>Sfdump(\"sf-dump-788772565\", {\"maxDepth\":0})<\/script>\n","request_headers":"<pre class=sf-dump id=sf-dump-256606042 data-indent-pad=\" \"><span class=sf-dump-note>array:13<\/span> [<samp data-depth=1 class=sf-dump-expanded>\n \"<span class=sf-dump-key>cf-ipcountry<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"2 characters\">US<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>cf-connecting-ip<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"14 characters\">216.73.216.221<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>cdn-loop<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"19 characters\">cloudflare; loops=1<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>user-agent<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"103 characters\">Mozilla\/5.0 AppleWebKit\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\/1.0; +claudebot@anthropic.com)<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>accept-encoding<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"8 characters\">gzip, br<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>accept<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"3 characters\">*\/*<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>cf-ray<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"20 characters\">95634c8708d97b21-ORD<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>cf-visitor<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"18 characters\">{"scheme":"https"}<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>connection<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"5 characters\">close<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>x-forwarded-proto<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"5 characters\">https<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>x-forwarded-for<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"29 characters\">216.73.216.221, 172.69.17.167<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>x-server-addr<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"14 characters\">154.12.239.204<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>host<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"21 characters\">receivinghelpdesk.com<\/span>\"\n <\/samp>]\n<\/samp>]\n<\/pre><script>Sfdump(\"sf-dump-256606042\", {\"maxDepth\":0})<\/script>\n","request_server":"<pre class=sf-dump id=sf-dump-96328454 data-indent-pad=\" \"><span class=sf-dump-note>array:44<\/span> [<samp data-depth=1 class=sf-dump-expanded>\n \"<span class=sf-dump-key>USER<\/span>\" => \"<span class=sf-dump-str title=\"8 characters\">runcloud<\/span>\"\n \"<span class=sf-dump-key>HOME<\/span>\" => \"<span class=sf-dump-str title=\"14 characters\">\/home\/runcloud<\/span>\"\n \"<span class=sf-dump-key>SCRIPT_NAME<\/span>\" => \"<span class=sf-dump-str title=\"14 characters\">\/ask\/index.php<\/span>\"\n \"<span class=sf-dump-key>REQUEST_URI<\/span>\" => \"<span class=sf-dump-str title=\"33 characters\">\/ask\/html-tags-list-with-examples<\/span>\"\n \"<span class=sf-dump-key>QUERY_STRING<\/span>\" => \"\"\n \"<span class=sf-dump-key>REQUEST_METHOD<\/span>\" => \"<span class=sf-dump-str title=\"3 characters\">GET<\/span>\"\n \"<span class=sf-dump-key>SERVER_PROTOCOL<\/span>\" => \"<span class=sf-dump-str title=\"8 characters\">HTTP\/1.0<\/span>\"\n \"<span class=sf-dump-key>GATEWAY_INTERFACE<\/span>\" => \"<span class=sf-dump-str title=\"7 characters\">CGI\/1.1<\/span>\"\n \"<span class=sf-dump-key>REDIRECT_URL<\/span>\" => \"<span class=sf-dump-str title=\"33 characters\">\/ask\/html-tags-list-with-examples<\/span>\"\n \"<span class=sf-dump-key>REMOTE_PORT<\/span>\" => \"<span class=sf-dump-str title=\"5 characters\">56626<\/span>\"\n \"<span class=sf-dump-key>SCRIPT_FILENAME<\/span>\" => \"<span class=sf-dump-str title=\"54 characters\">\/home\/runcloud\/webapps\/ReceivingHelpDesk\/ask\/index.php<\/span>\"\n \"<span class=sf-dump-key>SERVER_ADMIN<\/span>\" => \"<span class=sf-dump-str title=\"15 characters\">you@example.com<\/span>\"\n \"<span class=sf-dump-key>CONTEXT_DOCUMENT_ROOT<\/span>\" => \"<span class=sf-dump-str title=\"41 characters\">\/home\/runcloud\/webapps\/ReceivingHelpDesk\/<\/span>\"\n \"<span class=sf-dump-key>CONTEXT_PREFIX<\/span>\" => \"\"\n \"<span class=sf-dump-key>REQUEST_SCHEME<\/span>\" => \"<span class=sf-dump-str title=\"4 characters\">http<\/span>\"\n \"<span class=sf-dump-key>DOCUMENT_ROOT<\/span>\" => \"<span class=sf-dump-str title=\"41 characters\">\/home\/runcloud\/webapps\/ReceivingHelpDesk\/<\/span>\"\n \"<span class=sf-dump-key>REMOTE_ADDR<\/span>\" => \"<span class=sf-dump-str title=\"13 characters\">172.69.17.167<\/span>\"\n \"<span class=sf-dump-key>SERVER_PORT<\/span>\" => \"<span class=sf-dump-str title=\"2 characters\">80<\/span>\"\n \"<span class=sf-dump-key>SERVER_ADDR<\/span>\" => \"<span class=sf-dump-str title=\"9 characters\">127.0.0.1<\/span>\"\n \"<span class=sf-dump-key>SERVER_NAME<\/span>\" => \"<span class=sf-dump-str title=\"21 characters\">receivinghelpdesk.com<\/span>\"\n \"<span class=sf-dump-key>SERVER_SOFTWARE<\/span>\" => \"<span class=sf-dump-str title=\"35 characters\">Apache\/2.4.63 (Unix) OpenSSL\/1.1.1f<\/span>\"\n \"<span class=sf-dump-key>SERVER_SIGNATURE<\/span>\" => \"\"\n \"<span class=sf-dump-key>LD_LIBRARY_PATH<\/span>\" => \"<span class=sf-dump-str title=\"33 characters\">\/RunCloud\/Packages\/apache2-rc\/lib<\/span>\"\n \"<span class=sf-dump-key>PATH<\/span>\" => \"<span class=sf-dump-str title=\"60 characters\">\/usr\/local\/sbin:\/usr\/local\/bin:\/usr\/sbin:\/usr\/bin:\/sbin:\/bin<\/span>\"\n \"<span class=sf-dump-key>HTTP_CF_IPCOUNTRY<\/span>\" => \"<span class=sf-dump-str title=\"2 characters\">US<\/span>\"\n \"<span class=sf-dump-key>HTTP_CF_CONNECTING_IP<\/span>\" => \"<span class=sf-dump-str title=\"14 characters\">216.73.216.221<\/span>\"\n \"<span class=sf-dump-key>HTTP_CDN_LOOP<\/span>\" => \"<span class=sf-dump-str title=\"19 characters\">cloudflare; loops=1<\/span>\"\n \"<span class=sf-dump-key>HTTP_USER_AGENT<\/span>\" => \"<span class=sf-dump-str title=\"103 characters\">Mozilla\/5.0 AppleWebKit\/537.36 (KHTML, like Gecko; compatible; ClaudeBot\/1.0; +claudebot@anthropic.com)<\/span>\"\n \"<span class=sf-dump-key>HTTP_ACCEPT_ENCODING<\/span>\" => \"<span class=sf-dump-str title=\"8 characters\">gzip, br<\/span>\"\n \"<span class=sf-dump-key>HTTP_ACCEPT<\/span>\" => \"<span class=sf-dump-str title=\"3 characters\">*\/*<\/span>\"\n \"<span class=sf-dump-key>HTTP_CF_RAY<\/span>\" => \"<span class=sf-dump-str title=\"20 characters\">95634c8708d97b21-ORD<\/span>\"\n \"<span class=sf-dump-key>HTTP_CF_VISITOR<\/span>\" => \"<span class=sf-dump-str title=\"18 characters\">{"scheme":"https"}<\/span>\"\n \"<span class=sf-dump-key>HTTP_CONNECTION<\/span>\" => \"<span class=sf-dump-str title=\"5 characters\">close<\/span>\"\n \"<span class=sf-dump-key>HTTP_X_FORWARDED_PROTO<\/span>\" => \"<span class=sf-dump-str title=\"5 characters\">https<\/span>\"\n \"<span class=sf-dump-key>HTTP_X_FORWARDED_FOR<\/span>\" => \"<span class=sf-dump-str title=\"29 characters\">216.73.216.221, 172.69.17.167<\/span>\"\n \"<span class=sf-dump-key>HTTP_X_SERVER_ADDR<\/span>\" => \"<span class=sf-dump-str title=\"14 characters\">154.12.239.204<\/span>\"\n \"<span class=sf-dump-key>HTTP_HOST<\/span>\" => \"<span class=sf-dump-str title=\"21 characters\">receivinghelpdesk.com<\/span>\"\n \"<span class=sf-dump-key>HTTPS<\/span>\" => \"<span class=sf-dump-str title=\"2 characters\">on<\/span>\"\n \"<span class=sf-dump-key>REDIRECT_STATUS<\/span>\" => \"<span class=sf-dump-str title=\"3 characters\">200<\/span>\"\n \"<span class=sf-dump-key>REDIRECT_HTTPS<\/span>\" => \"<span class=sf-dump-str title=\"2 characters\">on<\/span>\"\n \"<span class=sf-dump-key>FCGI_ROLE<\/span>\" => \"<span class=sf-dump-str title=\"9 characters\">RESPONDER<\/span>\"\n \"<span class=sf-dump-key>PHP_SELF<\/span>\" => \"<span class=sf-dump-str title=\"14 characters\">\/ask\/index.php<\/span>\"\n \"<span class=sf-dump-key>REQUEST_TIME_FLOAT<\/span>\" => <span class=sf-dump-num>1751010054.3548<\/span>\n \"<span class=sf-dump-key>REQUEST_TIME<\/span>\" => <span class=sf-dump-num>1751010054<\/span>\n<\/samp>]\n<\/pre><script>Sfdump(\"sf-dump-96328454\", {\"maxDepth\":0})<\/script>\n","request_cookies":"<pre class=sf-dump id=sf-dump-301835795 data-indent-pad=\" \">[]\n<\/pre><script>Sfdump(\"sf-dump-301835795\", {\"maxDepth\":0})<\/script>\n","response_headers":"<pre class=sf-dump id=sf-dump-1893018329 data-indent-pad=\" \"><span class=sf-dump-note>array:7<\/span> [<samp data-depth=1 class=sf-dump-expanded>\n \"<span class=sf-dump-key>content-type<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"24 characters\">text\/html; charset=UTF-8<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>cache-control<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"24 characters\">private, must-revalidate<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>date<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"29 characters\">Fri, 27 Jun 2025 07:40:54 GMT<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>pragma<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"8 characters\">no-cache<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>expires<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => <span class=sf-dump-num>-1<\/span>\n <\/samp>]\n \"<span class=sf-dump-key>set-cookie<\/span>\" => <span class=sf-dump-note>array:2<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"428 characters\">XSRF-TOKEN=eyJpdiI6IlNwR2l0WEVERUQ4R3hnMkFUNnlpRWc9PSIsInZhbHVlIjoiZHNMdjZZb1JqUmN1VndGMXNkUGJUTUJyc29WWkpnMndzRXNYSWU0THF5b2dpRFF2SWFPWGZHM3plUWpTdGVzM1RwUFh0VkNMeStoc3ZndU15Y2ZDcFcrbHRjMHBGOGhOWm91MFNIbi9WcEZ0ei8zUTk3QkUwaktOTy9ueWJ1K3EiLCJtYWMiOiJmZDU5ZmVkMWU2ZGIyYTNlZGNiMWE4YWM4NjZmOWFmOTg0YzNkODc4MmFlZDMzNWU3NGRhZDc0NmFkMTYxMzY3IiwidGFnIjoiIn0%3D; expires=Fri, 27-Jun-2025 09:40:55 GMT; Max-Age=7200; path=\/; samesite=lax<\/span>\"\n <span class=sf-dump-index>1<\/span> => \"<span class=sf-dump-str title=\"447 characters\">askhelpdesk_session=eyJpdiI6IkhyaEpDWWNhSjllelBMZDQyazNXRXc9PSIsInZhbHVlIjoiSVZHdE5PYkFFYWZobWVhYVBoWDIrcWQ5RlpFeWRCaTRCOTU4RDQ2UEtYVFRhSnEzYUw3UUVEMmJEZUEyWUxudXRkNDQwdHVnWFJ0YlEwRXVuais2ejFhMmlUSTdrMWJTZ0NNL0RuTlhxWmdleVgvZE1keXlMTGhhd09xSjFaRUEiLCJtYWMiOiJjYjc4NjE4NTcxNzE4MjJiMjYwZmI0NTkxNGQ2MTNlODQ4MDMwZTNjZmNlZWIzMzczZDRkMTU5YjVmM2I1NzZkIiwidGFnIjoiIn0%3D; expires=Fri, 27-Jun-2025 09:40:55 GMT; Max-Age=7200; path=\/; httponly; samesite=lax<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>Set-Cookie<\/span>\" => <span class=sf-dump-note>array:2<\/span> [<samp data-depth=2 class=sf-dump-compact>\n <span class=sf-dump-index>0<\/span> => \"<span class=sf-dump-str title=\"400 characters\">XSRF-TOKEN=eyJpdiI6IlNwR2l0WEVERUQ4R3hnMkFUNnlpRWc9PSIsInZhbHVlIjoiZHNMdjZZb1JqUmN1VndGMXNkUGJUTUJyc29WWkpnMndzRXNYSWU0THF5b2dpRFF2SWFPWGZHM3plUWpTdGVzM1RwUFh0VkNMeStoc3ZndU15Y2ZDcFcrbHRjMHBGOGhOWm91MFNIbi9WcEZ0ei8zUTk3QkUwaktOTy9ueWJ1K3EiLCJtYWMiOiJmZDU5ZmVkMWU2ZGIyYTNlZGNiMWE4YWM4NjZmOWFmOTg0YzNkODc4MmFlZDMzNWU3NGRhZDc0NmFkMTYxMzY3IiwidGFnIjoiIn0%3D; expires=Fri, 27-Jun-2025 09:40:55 GMT; path=\/<\/span>\"\n <span class=sf-dump-index>1<\/span> => \"<span class=sf-dump-str title=\"419 characters\">askhelpdesk_session=eyJpdiI6IkhyaEpDWWNhSjllelBMZDQyazNXRXc9PSIsInZhbHVlIjoiSVZHdE5PYkFFYWZobWVhYVBoWDIrcWQ5RlpFeWRCaTRCOTU4RDQ2UEtYVFRhSnEzYUw3UUVEMmJEZUEyWUxudXRkNDQwdHVnWFJ0YlEwRXVuais2ejFhMmlUSTdrMWJTZ0NNL0RuTlhxWmdleVgvZE1keXlMTGhhd09xSjFaRUEiLCJtYWMiOiJjYjc4NjE4NTcxNzE4MjJiMjYwZmI0NTkxNGQ2MTNlODQ4MDMwZTNjZmNlZWIzMzczZDRkMTU5YjVmM2I1NzZkIiwidGFnIjoiIn0%3D; expires=Fri, 27-Jun-2025 09:40:55 GMT; path=\/; httponly<\/span>\"\n <\/samp>]\n<\/samp>]\n<\/pre><script>Sfdump(\"sf-dump-1893018329\", {\"maxDepth\":0})<\/script>\n","session_attributes":"<pre class=sf-dump id=sf-dump-313088196 data-indent-pad=\" \"><span class=sf-dump-note>array:4<\/span> [<samp data-depth=1 class=sf-dump-expanded>\n \"<span class=sf-dump-key>_token<\/span>\" => \"<span class=sf-dump-str title=\"40 characters\">2IcWidPeadeDBXT9NYnkfu4ArZMd7xTBFMbJvmI0<\/span>\"\n \"<span class=sf-dump-key>_previous<\/span>\" => <span class=sf-dump-note>array:1<\/span> [<samp data-depth=2 class=sf-dump-compact>\n \"<span class=sf-dump-key>url<\/span>\" => \"<span class=sf-dump-str title=\"62 characters\">https:\/\/receivinghelpdesk.com\/ask\/html-tags-list-with-examples<\/span>\"\n <\/samp>]\n \"<span class=sf-dump-key>_flash<\/span>\" => <span class=sf-dump-note>array:2<\/span> [<samp data-depth=2 class=sf-dump-compact>\n \"<span class=sf-dump-key>old<\/span>\" => []\n \"<span class=sf-dump-key>new<\/span>\" => []\n <\/samp>]\n \"<span class=sf-dump-key>PHPDEBUGBAR_STACK_DATA<\/span>\" => []\n<\/samp>]\n<\/pre><script>Sfdump(\"sf-dump-313088196\", {\"maxDepth\":0})<\/script>\n"}}, "X832b0a94a87e8b011d8ee081e8e35f01"); </script> </body> </html>