{"id":12423,"date":"2020-04-22T15:10:01","date_gmt":"2020-04-22T22:10:01","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=12423"},"modified":"2023-12-01T02:43:07","modified_gmt":"2023-12-01T10:43:07","slug":"html-lists","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-lists\/","title":{"rendered":"HTML Lists: Step-by-Step Guide"},"content":{"rendered":"\n<p><em>The HTML list tag is used to create lists on a webpage. It can create three types of lists: ordered lists, unordered lists, and description lists.<\/em><\/p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<p>When you&#8217;re building a web page, you may want to present information as a well-formatted list. For example, you may have a roster of student names that you want to appear in a list form, or you may have a series of blog posts that you wish to format as a list.<\/p>\n\n\n\n<p>In <code>HTML<\/code>, there is a built-in function that allows you to create lists. In this tutorial, we&#8217;ll cover <code>HTML<\/code> list types and how to implement them into a web page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML List Types<\/h2>\n\n\n\n<p>There are three types of lists in <code>HTML<\/code>, and each one has a specific purpose and code. These are as follows:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>Ordered list<\/code>: Used to create a list of items in a specific order.<\/li>\n\n\n\n<li><code>Unordered list<\/code>: Used to create a list of items with no order.<\/li>\n\n\n\n<li><code>Description list<\/code>: Used to create a list of items and descriptions.<\/li>\n<\/ul>\n\n\n\n<p>Lists can appear in any part of a webpage, whether you place them inside the text, after line breaks, or even inside another list to create a <code>nested list<\/code>. Let\u2019s break down how you can create these three types of lists in <code>HTML<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML Lists: Ordered<\/h2>\n\n\n\n<p><code>Ordered lists<\/code> are used in <code>HTML<\/code> when the order of the list is necessary. For example, if you have a series of instructions that need to occur in a particular order, you would want to use an ordered list. <code>Ordered lists<\/code> are numbered lists.<\/p>\n\n\n\n<p><code>Ordered lists<\/code> use the <code>&lt;ol&gt;<\/code> tag, and each item in the list uses an <code>&lt;li&gt;<\/code> tag. Here\u2019s an example of an ordered list:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;ol&gt;\n\t&lt;li&gt;Mix 100g plain flour, 2 eggs, 300ml milk, and 1tbsp sunflower oil in a bowl.&lt;\/li&gt;\n\t&lt;li&gt;Leave the mix to rest for 30 minutes.&lt;\/li&gt;\n\t&lt;li&gt;Set a medium-size frying pan over a medium heat and wipe it with oiled kitchen paper.&lt;\/li&gt;\n\t&lt;li&gt;Pour batter mixture into the pan and cook on each side for one minute.&lt;\/li&gt;\n&lt;\/ol&gt;<\/pre><\/div>\n\n\n\n<p>In the above example, we have created a basic recipe for pancakes. Each step in this list has to occur in order, so we chose an ordered list. Here is the output of our code:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/x5-5kyDcP0630mWl1SbCNJ4SQdvlzWfsXpEHTeJhc-uS1sxmPqlxSsPe2dXjhLYqxhG4QS81aY4EBC1sob3v1d8CTZ24Hy8TEWuZYThkpF4cKWD4JRpn9rQ3Jbh-wG4XPV6-4UIb\" alt=\"\"\/><\/figure>\n\n\n\n<p><code>Ordered lists<\/code> start with the number one and go in ascending order. However, if you want your list to start at a different number, you can use the <code>start<\/code> attribute like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;ol start=\"5\"&gt;\n\t&lt;li&gt;Move the pancake onto a plate (repeat steps 2-4 if you are making multiple pancakes).&lt;\/li&gt;\n\t&lt;li&gt;Spread butter on your pancakes, maple syrup, lemon, or any other topping.&lt;\/li&gt;\n\t&lt;li&gt;Enjoy your pancakes!&lt;\/li&gt;\n&lt;\/ol&gt;<\/pre><\/div>\n\n\n\n<p>Our new list appears as follows:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/XyzlVoiP1JTMdJzhdcBL4Yto1HnOR5ruN-IRdbttv30-0mO-CRDfdy2V-2NSRJbdHprqsZ6EQYwso8KpDVvMnI_VcFGX6oab80ULyIVwrnn5ttQi9OzpUTbqqLm4gWTgp3CqGZ2q\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">HTML Lists: Unordered<\/h2>\n\n\n\n<p>If you want to create a list of items where the order of the list\u2019s items is not important, you can use the <code>HTML unordered<\/code> list tag. We can create <code>unordered lists<\/code> using the <code>&lt;ul&gt;<\/code> tag, and each list item, like in our ordered list, starts with the <code>&lt;li&gt;<\/code> tag.<\/p>\n\n\n\n<p>Here is an example of an <code>unordered list<\/code>: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;ul&gt;\n\t&lt;li&gt;Alex&lt;\/li&gt;\n\t&lt;li&gt;Carol&lt;\/li&gt;\n\t&lt;li&gt;Lucy&lt;\/li&gt;\n\t&lt;li&gt;Shawn&lt;\/li&gt;\n&lt;\/ul&gt;<\/pre><\/div>\n\n\n\n<p>Our list appears as follows:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/7qZgFfUA5KOAI2iP5yv8P65Myh-RwEIGcCKZFRDe5y9sYMEHpRI1O7Rd5CAbhf5vSqIyfHPLSJTDxvGsMqrroa4EHdC27lubEre88RDsTzbsAV_Z7JRYz5W1HTVzzk1HW6LvcVGw\" alt=\"\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">HTML Lists: Description Lists<\/h2>\n\n\n\n<p>When you\u2019re writing a list, you may want to include a description of each item on your list. For example, if you had a list of student names, you may want to add their grades, but not as part of the main list text.<\/p>\n\n\n\n<p>That\u2019s where <code>description lists<\/code> come in. <code>Description lists<\/code> are lists of items with a description of each element. <code>Description lists<\/code> are created using the <code>&lt;dl&gt;<\/code> tag, the main elements in the list use the <code>&lt;dt&gt;<\/code> tag, and definitions use the <code>&lt;dd&gt;<\/code> tag.<\/p>\n\n\n\n<p>Here is an example of a <code>description list<\/code> in <code>HTML<\/code>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;dl&gt;\n\t&lt;dt&gt;Economy Class&lt;\/dt&gt;\n\t&lt;dd&gt;Standard seats, no meal service.&lt;\/dd&gt;\n\t&lt;dt&gt;First Class&lt;\/dt&gt;\n\t&lt;dd&gt;Luxury seats, catered meal service.&lt;\/dd&gt;\n&lt;\/dl&gt;<\/pre><\/div>\n\n\n\n<p>Our code returns the following list:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/wURcLnDbWrKQGu3O656e7olWizcALrdN2RhWyTMhEh7dmiJqbNxg4gpsslUzEF4RNQiZ_k54iaPEIIyXvNhfkE7NmpSOV-Y98KTr5x5oXshhSHf5RhKEj5LIZIvAP0AkJszeIk0i\" alt=\"\"\/><\/figure>\n\n\n\n<p>As you can see, the airplane class names appear in a list format, and the descriptions for those names appear under each item. Each description is also indented, which distinguishes it from the list item.<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/HTML-Lists?lite=true\"><\/iframe>\n<br>\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Lists are an essential tag in <code>HTML<\/code>, which allows developers to present information in a well-formatted manner. Lists are typically more comfortable for users to read, and using lists also gives developers more control over the information structure.<\/p>\n\n\n\n<p>In this tutorial, we have broken down lists in <code>HTML<\/code>, and how to create any of the three types of <code>HTML<\/code> lists: <code>ordered<\/code> (li ol tags), <code>unordered<\/code> (ul li tags), and <code>description<\/code> (dt dd tags). Now you\u2019re on your way to creating lists in <code>HTML<\/code> like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"The HTML list tag is used to create lists on a webpage. It can create three types of lists: ordered lists, unordered lists, and description lists. When you're building a web page, you may want to present information as a well-formatted list. For example, you may have a roster of student names that you want&hellip;","protected":false},"author":240,"featured_media":12424,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-12423","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"HTML","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>HTML Lists: Step-by-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/html-lists\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Lists: Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-lists\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-22T22:10:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T10:43:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"HTML Lists: Step-by-Step Guide\",\"datePublished\":\"2020-04-22T22:10:01+00:00\",\"dateModified\":\"2023-12-01T10:43:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/\"},\"wordCount\":609,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/HTML-LISTS.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/\",\"name\":\"HTML Lists: Step-by-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/HTML-LISTS.jpg\",\"datePublished\":\"2020-04-22T22:10:01+00:00\",\"dateModified\":\"2023-12-01T10:43:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/HTML-LISTS.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/HTML-LISTS.jpg\",\"width\":1200,\"height\":675},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-lists\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTML Lists: Step-by-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/jamesgallagher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HTML Lists: Step-by-Step Guide | Career Karma","description":"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/careerkarma.com\/blog\/html-lists\/","og_locale":"en_US","og_type":"article","og_title":"HTML Lists: Step-by-Step Guide","og_description":"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.","og_url":"https:\/\/careerkarma.com\/blog\/html-lists\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-04-22T22:10:01+00:00","article_modified_time":"2023-12-01T10:43:07+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"HTML Lists: Step-by-Step Guide","datePublished":"2020-04-22T22:10:01+00:00","dateModified":"2023-12-01T10:43:07+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/"},"wordCount":609,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-lists\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-lists\/","url":"https:\/\/careerkarma.com\/blog\/html-lists\/","name":"HTML Lists: Step-by-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg","datePublished":"2020-04-22T22:10:01+00:00","dateModified":"2023-12-01T10:43:07+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"HTML lists allow web developers to present information in a list structure. Learn more and how to create ordered, unordered, and description lists with HTML.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-lists\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/HTML-LISTS.jpg","width":1200,"height":675},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-lists\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/careerkarma.com\/blog\/html\/"},{"@type":"ListItem","position":3,"name":"HTML Lists: Step-by-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12423","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=12423"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/12423\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/12424"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=12423"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=12423"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=12423"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}