Browse by Domains

Introduction to HTML: What is HTML and How it Works?

HTML stands for Hypertext Markup Language and it is a widely used programming language used to develop web pages. Through this HTML Tutorial, we’ll understand what HTML means, the features of HTML, the basic tags and elements used, and more. Let’s get started

HTML Tutorial – What is HTML?

HTML Stands for HyperText Markup Language, where

  • HyperText stands for Link between web pages.
  • Markup Language means Text between tags that define the structure.

HTML is a markup language that is used to create web pages. It defines how the web page looks and how to display content with the help of elements. It forms or defines the structure of our Web Page, thus it forms or defines the structure of our Web Page. We must remember to save your file with .html extension. In this HTML Tutorial, we’ll understand all the basic concepts required to kick-start your journey in HTML.

Applications of HTML

HTML is used for various purposes. Let us take a look at them

  1. Web Pages Development
    HTML is famously used for creating web pages on the world wide web. Every web page contains a set of HTML tags and hyperlinks which are used to connect other pages. Every page on the internet is written using HTML.
  2. Navigating the Internet
    Navigating on the internet would have been quite a tedious task without HTML. The anchor tags of HTML allows us to link pages and navigate easily. Imagine our life without anchor tags, you would literally have to enter URL everytime. Using achor tags, you can also navigate within a webpage.
  3. Embedding Images and Videos
    HTML allows us to embed images and videos with ease and gives us features to adjust height, position and even rendering type. You can adjust controls, thumbnails, timestamps and much more for videos. Earlier this was done using Flash and HTML has made it easier with the help of <video> tag.
  4. Clinet-side storage
    HTML5 has made client-side storage possible using localStorage and IndexD due to which we no longer need to reply on Cookies. Both of these tactics have their own set of rules and characteristics. String-based hash-table storage is provided by localStorage. Its API is straightforward, with setItem, getItem, and removeItem functions available to developers. On the other hand, IndexDB is a larger and more capable client-side data store. With the user’s permission, the IndexDB database can be enlarged.
  5. Game development
    Although you cannot create complex high-end video games with HTML, the <canvas> element of HTML can be used to make 2D and 3D games using CSS and JavaScript which can be run on browsers.
  6. Data entry support
    With the usage of new HTML5 standards in all the latest browsers, developers can simply add the tags for required fields, text, data format, etc. and get the data. HTML5 now has several new attributes for data-entry and validation purposes.
  7. Interacting with Native APIs
    With the help of HTML, you can interact with your Operating system. With this feature, you can easily drag files onto a web page to upload, full-screen a video, and much more.
html-applications

Features Of HTML

  • The learning curve is very easy (easy to modify)
  • Creating effective presentations
  • Adding Links wherein we can add references
  • Can display documents on platforms like Mac, Windows, Linux, etc
  • Adding videos, graphics, and audios making it more attractive
  • Case insensitive language

HTML Editor

  • Simple editor: Notepad
  • Notepad++
  • Atom
  • Best editor: Sublime Text

HTML Skeleton

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>

HTML Basic

<!DOCTYPE html>

Instruction to the browser about the HTML version.

<html>

  • Root element which acts as a container to hold all the code
  • The browser should know that this is an HTML document
  • Permitted content: One head tag followed by one body tag

<head>

  • Everything written here will never be displayed in the browser
  • It contains general information about the document
  • Title, definitions of CSS and script sheets
  • Metadata(information about the document)

<body>

  •  Everything written here will be displayed in the browser
  • Contains text, images, links that can be achieved through tags
  •  Examples:
  • ○ <p> This is our first paragraph. </p>
  • ○ <a href=”http://www.google.com”>Go To Google</a>
  • ○ <img src=”photo.jpg”>

HTML Comment

  • Comments don’t render on the browser
  • Helps to understand our code better and makes it readable.
  • Helps to debug our code
  • Three ways to comment:
  1. Single line
  2. Multiple lines
  3. Comment tag //Supported by IE

HTML Elements

  • Elements are created using tags
  • Elements are used to define the semantics
  • Can be nested and empty

What is HTML Elements Definition

<p color=”red”> This is our first Paragraph </p>

Explanation:

  • Start tag: <p>
  • Attributes: color =” red”
  • End tag : </p> // optional
  • Content: This is our first Paragraph

Types of Elements

There are different types of elements in HTML. Before moving ahead in the HTML Tutorial, let us understand the types of elements.

  • Block Level

○ Takes up full block or width and adds structure in the web page

○ Always starts from the new line

○ Always end before the new line

○ Example:

■ <p >

■ <div>

■ <h1>…<h6>

■ <ol>

■ <ul>

  •  Inline Level

○ Takes up what is requires and adds meaning to the web page

○ Always starts from where the previous element ended

○ Example :

■ <span>

■ <strong>

■ <em>

■ <img>

■ <a>

Now you can enroll for free to online HTML course in hindi

HTML Attributes

  • Properties associated with each tag is called an Attribute.
  • <tag name=”value”></tag> is the structure.
  • There are some Global Attributes that can be applied to all the tags.
    • Title: Add extra information (hover)
    • Style: Add style information(font,background,color,size)
  • There are some attributes that can be applied to specific tags.
    • <img src=” URL” width=”100” height=”70” alt=” File cannot be loaded”>
    • src is the attribute used in image tag to define the path
    • Width is an attribute used to define width in pixels
    • Height is an attribute used to define width in pixels
    • Alt i.e alternate text if an image is not loaded
  • Name of the link
    • href is used for defining the path of the link

    • color is used to set the color of the horizontal line drawn on the webpage.

HTML Tags

  • Enclosed within <>
  • Different tags render different meanings.
  • Example:
    • <ul> <li>Whatever is written this tag comes up in the web page’s tab</li> <li>Defines the title of the page</li> <li>Syntax: <title>Home </title></li> </ul> </li> </ul> </li> <li><p> <ul> <li>Defines the paragraph</li> <li>Syntax:<p > This is our first Paragraph </p></li> </ul> </li> </ul> <p><strong>List of Self-closing tags</strong></p> <p>●  <hr> tag</p> <p> ○  Stands for horizontal rule</p> <p> ○  Dividing the web page</p> <p> ○  Syntax:  <hr><br></p> <p>●  <br> tag</p> <p> ○  Stands for break line</p> <p> ○  Moving to next line</p> <p> ○  Syntax: <br></p> <p>●  <img> tag</p> <p> ○ To add images in the web page</p> <p> ○ Syntax:  <img src=”path”></p> <p> ○ Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <img src="https://images.unsplash.com/photo-1592195241233-84b15fc81ecb?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80" title="lotus" style="width:500px"> </body> </html> </code></pre> <p>●  <h1> tag …… <h6>tag</p> <p>○  Stands for heading tag</p> <p>○  Defines heading of a page</p> <p>○  h1 represents most important page in the page</p> <p>○  h6 represents least important page in the page</p> <p>○  Syntax:  <h1>This is my first heading </h1></p> <p>○  Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <h1>This is heading 1 </h1> <h2>This is heading 2 </h2> <h3>This is heading 3 </h3> <h4>This is heading 4 </h4> <h5>This is heading 5 </h5> <h6>This is heading 6 </h6> </body> </html> </code></pre> <p>● <strong> tag</p> <p>○  Defines the text to be bold</p> <p>○  Replaced <b>tag //HTML5</p> <p>○  Syntax:  <strong> This text is important </strong></p> <p>○  Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <p> Lorem ipsum dolor sit <strong>amet, consectetur adipisicing elit, sed do eiusmod</strong>tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </body> </html> </code></pre> <p>● <em> tag</p> <p>○  Defines the text to be bold</p> <p>○  Replaced <i>tag //HTML5</p> <p>○  Syntax:  <em> This text is special </em></p> <p>○  Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <p> Lorem ipsum dolor sit <em>amet, consectetur adipisicing elit, sed do eiusmod</em>tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </body> </html> </code></pre> <p>● <ol> tag</p> <p>○  Stands for an ordered list</p> <p>○  To define a series of events that take place in some order</p> <p>○  Example making a tea (like a flow chart)</p> <p>○  Syntax: <ol>………</ol></p> <p>●  <ul> tag</p> <p>○  Stands for unordered list</p> <p>○  To define a series of events that take place where the order is not important.</p> <p>○  Example your hobbies</p> <p>○  Syntax: <ul>………</ul></p> <p>● <li> tag</p> <p>○  Defines the list item</p> <p>○  Used inside the ol and ul tag to define the event</p> <p>○  Syntax: <li></li></p> <p>○  Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <ul> <li> Cricket </li> <li> Football </li> <li> Hockey </li> </ul> </body> </html> </code></pre> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <ol> <li> Cricket </li> <li> Football </li> <li> Hockey </li> </ol> </body> </html> </code></pre> <p>● <div> and <span> tags</p> <p>○  Both of these are used to group different tags .</p> <p>○  Acts like a container.</p> <p>○  Effective while styling.</p> <p>○  Syntax: <div>………</div></p> <p>○  Syntax: <span>….</span></p> <p>○  Difference <div> is block level and <span> is inline level.</p> <p>○  Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <p> Lorem ipsum dolor sit amet, <div>consectetur adipisicing elit, seddo eiusmod tempor incididunt ut labore</div> et dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </body> </html> </code></pre> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <p> Lorem ipsum dolor sit amet, <span>consectetur adipisicing elit, seddo eiusmod tempor incididunt ut labore</span> et dolore magna aliqua. Ut enim ad minim veniam,quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </body> </html> </code></pre> <p>● <a> tags</p> <p>○  Used to add links in a web page</p> <p>○  <a href=”url”> Name of the link </a></p> <p>○  Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title></title> </head> <body> <a href="https://www.google.com/">go to google</a> </body> </html> </code></pre> <p>● <table> tags</p> <ul> <li>Used to create a table on a web page</li> <li>Need other tags for completing the creation of a table <ul> <li><tr> : for marking the table row</li> <li><th> : for table header</li> <li><td> : for table column data</li> <li>Everything is always enclosed within <tr></li> <li><thead> : to keep all header data</li> <li><tbody> : to keep all body data</li> </ul> </li> <li>Example:</li> </ul> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title>Color Chart</title> </head> <body> <h1>My first Color Chart</h1> <table border="1"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Mixed with</th> </tr> </thead> <tbody> <!-- Red --> <tr> <td>Red</td> <td>Turns to pink </td> <td>White</td> </tr> <!-- Dark Blue --> <tr> <td>Dark Blue</td> <td>Turns to Sky Blue</td> <td>White</td> </tr> <!-- Green --> <tr> <td>Green</td> <td>Turns to Black</td> <td>Blue</td> </tr> </tbody> </table> </body> </html> </code></pre> <p>● <form> tags</p> <ul> <li>action attribute: It specifies the URL to send form data to</li> <li>method attribute: specifies the type of HTTP request(GET or POST)</li> <li>Example: <form action=”/my-form-submitting-page”  method=”POST”></li> <li><input>: used to accept data from the user</li> <li>Some types of inputs are:</li> </ul> <ul> <li><strong>Text</strong>: used to store text data. Syntax: type=”text”</li> <li><strong>Password</strong>: used to enter a secure password. Syntax: type=”password”</li> <li><strong>Placeholder: </strong>temporary text in input fields. It is generally accompanied by “text” and “password” attributes. Syntax: placeholder=”insert- text-here”</li> <li><strong>Button</strong>: used to include buttons in the form. Syntax: type=”button” value=”insert-text-here”</li> <li>Submit button: For creating a submit button. All the data will get submitted when it is clicked. Syntax: type=”submit”</li> <li><strong>Checkbox:</strong> to provide the ability to check multiple options. Syntax: type=”checkbox”. To check options by default, set it with the checked attribute.</li> <li><strong>Radio Button: </strong>allows one to choose a single option. Syntax: type=”radio”. Keep the name attribute of all the options the same.</li> <li><select>: For every possible option to select, use an <option> tag<option></li> <li><strong>Text Areas:</strong> multi-line plain-text editing control. Syntax: <textarea>. You can specify how large the text area is by using the “rows” and “cols” attributes</li> <li><strong>Labels:</strong> add captions for individual items in a form. Syntax: <label>. A label can be used by placing the control element inside the <label> element, or by using the “for” and “id” attributes.</li> <li><strong>Validations </strong>ensure that users fill out forms in the correct format, e.g.:</li> <li>required: The Boolean attribute which makes a field mandatory:</li> <li>email: the browser will ensure that the field contains an @ symbol.</li> </ul> <ul> <li>Example:</li> </ul> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <title>Register</title> </head> <body> <h1>Register Form</h1> <form> <label>First Name: <input type="text" name="firstName" placeholder="firstName" required></label> <label>Last Name: <input type="text" name="lastName" placeholder="lastName" required></label><br> <label>Male <input type="radio" name="gender" value="male"></label> <label>Female <input type="radio" name="gender" value="female"></label> <label>Other <input type="radio" name="gender" value="other"></label><br> <label>Email: <input type="email" name="email" placeholder="your email" required></label> <!-- <label>Password: <input type="password" name="password" placeholder="your password" minlength="5" maxlength="10"></label><br> --> <label>Password: <input type="password" name="password" placeholder="your password" pattern=".{5,10}" required title="Please enter password of length 5 to 10"></label><br> <label for="">Birthday: </label> <select id="birthday" name="Month"> <option>Month</option> <option>Jan</option> <option>Feb</option> <option>Mar</option> <option>Apr</option> </select> <select id="birthday" name="Day"> <option>Day</option> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> <select id="birthday" name="Year"> <option>year</option> <option>1990</option> <option>1991</option> <option>1992</option> <option>1993</option> <option>1994</option> </select><br> <label>I agree to the terms and conditions <input type="checkbox" name="check"> </label><br> <input type="submit" name="submit"> </form> </body> </html> </code></pre> <h2 class="wp-block-heading" id="meta-tags-in-html"><strong>Meta Tags in HTML</strong></h2> <p>Metadata is the additional information about a document. We can specify metadata through Meta Tags in HTML. These Meta Tags in HTML can be used to describe elements such as author, list of keywords, expiry date, etc. It is an empty element and does not have any closing tag. However, it carries information within it’s attribute. </p> <p>A <meta> tag does not impact the physical appearance of the document. So from an appearance point of view, it makes no difference whether meta tags are included or not. </p> <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper"> <div class="ast-oembed-container " style="height: 100%;"><div class="rll-youtube-player" data-src="https://www.youtube.com/embed/zy904SvvCGQ" data-id="zy904SvvCGQ" data-query="start=266&feature=oembed" data-alt="Getting Started With HTML | Learn HTML From Scratch | Great Learning"></div><noscript><iframe title="Getting Started With HTML | Learn HTML From Scratch | Great Learning" width="1200" height="675" src="https://www.youtube.com/embed/zy904SvvCGQ?start=266&feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></noscript></div> </div></figure> <h2 class="wp-block-heading" id="html-forms"><strong>HTML Forms</strong></h2> <p>The next step in the HTML tutorial is to understand Forms. An <strong>HTML </strong>(HyperText Markup Language)<strong> form</strong> is a document that contains controls such as text fields, password fields, checkboxes, radio buttons, submit button, menus etc., to store the information of a user on the web server. An HTML form is used to enter data that is to be sent to the server for processing, such as name, email address, password, phone number, etc., using interactive controls.</p> <p>The various elements of HTML forms with the details are captured below:</p> <p><form> element </p> <p>The <form> element of HTML is used to create HTML form which is used for user to input information.</p> <p><form><br>..<br><em>form elements</em><br>..<br></form></p> <p>The <form> element contains different types of input elements. Some of the form elements are: text fields, checkboxes, radio buttons, submit buttons, etc.</p> <p><strong>Below is the table consisting of form elements.</strong></p> <figure class="wp-block-table"><table><tbody><tr><td><strong>Tag</strong></td><td><strong>Description</strong></td></tr><tr><td><form></td><td>This element defines an HTML form for user input</td></tr><tr><td><input></td><td>This element defines fines an input control</td></tr><tr><td><textarea></td><td>This element defines a multiline input control (text area)</td></tr><tr><td><label></td><td>This element defines a label for an <input> element</td></tr><tr><td><fieldset></td><td>This element groups related elements in a form</td></tr><tr><td><legend></td><td>This element defines a caption for a <fieldset> element</td></tr><tr><td><select></td><td>This element defines a drop-down list</td></tr><tr><td><optgroup></td><td>This element of HTML <form> defines a group of related options in a drop-down list</td></tr><tr><td><option></td><td>This element defines an option in a drop-down list</td></tr><tr><td><button></td><td>This element defines a clickable button</td></tr><tr><td><datalist></td><td>This element of HTML <form> specifies a list of pre-defined options for input controls</td></tr><tr><td><output></td><td>This element defines the result of a calculation.</td></tr></tbody></table></figure> <h4 class="wp-block-heading" id="html-form-attributes">HTML Form Attributes</h4> <p>Now let’s learn about the different attributes for the HTML <form> element.</p> <p>The <strong>HTML form Attribute</strong> specifies that the element can contain one or more forms. The various <form> attributes are defined below:</p> <ol> <li><strong>The Action Attribute</strong></li> </ol> <p>As the same specifies, the action attribute defines the action to be performed when the form is submitted.</p> <p>When the submit button is clicked by the user, the form data is sent to a file that is on the server.</p> <p>Let us understand with an example below: the form data is sent to a file named “action_sample.php”. The file consists of a server-side script that handles the form data:</p> <p>Example:</p> <p>On submit, send form data to “action_sample.php”:</p> <pre class="wp-block-code"><code><form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris"><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br><br> <label for="country">Age:</label><br> <input type="text" id="country" name="country" value="India"><br><br> <input type="submit" value="Submit"> </form> </code></pre> <p>Note: If the action attribute is removed, then the action is set to the current page.</p> <ol start="2"> <li><strong>The Target Attribute</strong></li> </ol> <p>As the name indicates, the target attribute specifies where the response is displayed after the user submits the form.</p> <p>The target attribute can have one of the following values as mentioned in the table below:</p> <p>The default value of the target attribute is _self which means that the response will be displayed in the current window.</p> <figure class="wp-block-table"><table><tbody><tr><td><strong>Value</strong></td><td><strong>Description</strong></td></tr><tr><td>_blank</td><td>This value means the response is displayed in a new window or tab.</td></tr><tr><td>_self</td><td>This value means the response is displayed in the current window.</td></tr><tr><td>_parent</td><td>This value means the response is displayed in the parent frame.</td></tr><tr><td>_top</td><td>This value means the response is displayed in the full body of the window.</td></tr><tr><td>framename</td><td>This value means the response is displayed in a named iframe.</td></tr></tbody></table></figure> <p>Let us understand with an example:</p> <p><form action=”/action_sample.php” target=”_blank”></p> <p>The submitted result of above query will open in a new browser tab.</p> <ol start="3"> <li><strong>The Method Attribute</strong></li> </ol> <p>The method attribute is used to specify the HTTP method to be used when submitting the form data.</p> <p>GET method is the default HTTP method used when submitting form data. </p> <p>The form-data is sent as URL variables (with method=”get”) or as a HTTP post method(with method=”post”).</p> <p>Let us take an example that uses the GET method when submitting the form data:</p> <p><form action=”/action_sample.php” method=”get”></p> <p>An example using he POST method when submitting the form data is as below:</p> <p><form action=”/action_sample.php” method=”post”></p> <p>Some important points to remember when using the GET method are:</p> <ul> <li>The form data is appended to the URL with the Get method, in name/value pairs</li> <li>We should never use the Get method to send sensitive data that is not meant to be exposed. It is because the submitted form data is visible in the URL. So the sensitive information will be exposed.</li> <li>The length of a URL when using the Get method is limited to 2048 characters.</li> <li>GET method should be used for non-secure data, like query strings in Google</li> </ul> <p>Some important points to remember when using the POST method are:</p> <ul> <li>Post method appends the form data inside the body of the HTTP request. The form data that is submitted is not shown in the URL.</li> <li>Post method can be used to send large data; it has no size limitation. </li> <li>Form submissions that are done with the Post method cannot be bookmarked</li> </ul> <p>Note: We should always use the Post method if the form data contains any sensitive information that is not meant to be exposed.</p> <ol start="4"> <li><strong>The Autocomplete Attribute</strong></li> </ol> <p>As the name autocomplete specifies, the browser automatically fills the values based on what the user has filled earlier when this attribute is on.</p> <p>With the help of the autocomplete attribute, users can specify whether a form should have autocomplete on or off.</p> <p>Example of autocomplete attribute is with autocomplete ON is:</p> <p><form action=”/action_sample.php” autocomplete=”on”></p> <ol start="5"> <li><strong>The Novalidate Attribute</strong></li> </ol> <p>The Novalidate attribute of HTML form is a boolean attribute. As we know, boolean means 2 values, either yes or no. So when the novalidate attribute of the HTML form is present, it indicates or specifies that the form-data should not be validated when submitted.</p> <p>An example of a form with a novalidate attribute is as below:</p> <p><form action=”/action_sample.php” novalidate></p> <p><strong>Below is the list of all <form> attributes</strong></p> <figure class="wp-block-table"><table><tbody><tr><td><strong>Attribute</strong></td><td><strong>Description</strong></td></tr><tr><td>accept-charset</td><td>This attribute is used to define or specify the character encodings used for form submission</td></tr><tr><td>Action</td><td>This attribute is used to define or specify where to send the form data when a form is submitted</td></tr><tr><td>autocomplete</td><td>This attribute is used to tell  whether a form should have autocomplete on or off</td></tr><tr><td>enctype</td><td>This attribute is used to tell how the form-data should be encoded when submitting it to the server (only for method=”post”)</td></tr><tr><td>method</td><td>This attribute is used to tell the HTTP method to use when sending form-data</td></tr><tr><td>Name</td><td>This attribute is used to tell the name of the form</td></tr><tr><td>novalidate</td><td>This attribute is used to tell that the form should not be validated when submitted</td></tr><tr><td>Rel</td><td>This attribute is used to tell the relationship between a linked resource and the current document</td></tr><tr><td>Target</td><td>This attribute is used to define where to display the response that the user receives after submitting the form</td></tr></tbody></table></figure> <h4 class="wp-block-heading" id="html-form-elements">HTML Form Elements</h4> <p>Now let us learn about the HTML <form> Elements</p> <p>The various HTML <form> elements that are available and can be used are as below:</p> <figure class="wp-block-table"><table><tbody><tr><td><input></td></tr><tr><td><label></td></tr><tr><td><select></td></tr><tr><td><textarea></td></tr><tr><td><button></td></tr><tr><td><fieldset></td></tr><tr><td><legend></td></tr><tr><td><datalist></td></tr><tr><td><output></td></tr><tr><td><option></td></tr><tr><td><optgroup></td></tr></tbody></table></figure> <p>Let us learn in details about the form elements:</p> <ol> <li><strong>The <input> Element</strong></li> </ol> <p>Since HTML forms are used to take input from the user, so <inpot> elemnt is one of the most used form element.</p> <p>Depending on the type attribute, the <input> element is displayed in several ways.</p> <p>Some of the examples are:</p> <p><label for=”age”>Age:</label></p> <p><input type=”text” id=”age” name=”age”></p> <ol start="2"> <li><strong>The <label> Element</strong></li> </ol> <p>The HTML form element  <label> , defines a label for several form elements.</p> <p>This element of HTML form is useful for screen reader users. When the focus of the user is on the input element, the screen reader will read the label.</p> <p>Some users have difficulty clicking on a very small region( radio button or check box); the label element is helpful. When user clicks on text within <label> element , radio button/checkbox is toggled.</p> <p>Example:</p> <p><input type=”checkbox” name=”click_lbl” id=” click_lbl ” value=” click_lbl “><label for=”click_lbl “> Click this label to select.</label><br><br></p> <ol start="3"> <li><strong>The <select> Element</strong></li> </ol> <p>As the name select specifies, the <select> element of HTML form defines a drop-down list:</p> <p>Let us try to understand about select with the help of an example:</p> <pre class="wp-block-code"><code><label for="cars">Choose a car:</label> <select id="car" name="car"> <option value="maruti">Maruti</option> <option value="hyundai">Hyundai</option> <option value="skoda">Skoda</option> <option value="ford">Ford</option> </select> </code></pre> <p>The <option> element defines an option that can be selected from the given options.</p> <p>The first item in the drop-down list is the default that is selected.</p> <p>If we want to define a pre-selected option, the the select attribute can be added to the option:</p> <p>For Example</p> <p><option value=”ford” selected>Ford</option></p> <p>Visible Values:</p> <p>The size attribute of the HTML form is used to specify the number of visible values:</p> <p>Example</p> <pre class="wp-block-code"><code><label for="car">Choose a car:</label> <select id="car" name="car" size="3"> <option value="maruti">Maruti</option> <option value="hyundai">Hyundai</option> <option value="skoda">Skoda</option> <option value="ford">Ford</option> </select> </code></pre> <p>If we want to allow Multiple Selections, then multiple attribute can be used that allows the user to select more than one value:</p> <pre class="wp-block-code"><code><label for="car">Choose a car:</label> <select id="car" name="car" size="4"> <option value="maruti">Maruti</option> <option value="hyundai">Hyundai</option> <option value="skoda">Skoda</option> <option value="ford">Ford</option> </select> </code></pre> <ol start="4"> <li><strong>The <textarea> Element</strong></li> </ol> <p>The <textarea> element defines a text area for multi-line input. </p> <p>For Example:</p> <p><textarea name=”sample_text” rows=”20″ cols=”40″></p> <p>The cat was chasing the mouse in the garden.</p> <p></textarea></p> <p>Here, the rows attribute specifies the number of lines that are visible in a text area.</p> <p>And the cols attribute defines the width of a text area specified.</p> <p>The size of text area can also be defined using CSS:</p> <p>Example</p> <p><textarea name=”sample_text” style=”width:300px; height:700px;”></p> <p>The cat chasing the mouse in the garden.</p> <p></textarea></p> <ol start="5"> <li><strong>The <button> Element</strong></li> </ol> <p>The next import form element is the <button> element which defines a clickable button:</p> <p>Example:</p> <p><button type=”button” onclick=”alert(‘Hello World!!!’)”>Click Me!</button></p> <p>Please Note: Since different browsers might use different default types for button elements, we should always specify the type attribute for button elements.</p> <ol start="6"> <li><strong>The <fieldset> and <legend> Elements</strong></li> </ol> <p>Another important form element <fieldset> is used to group related data in a HTML form.</p> <p>The <legend> element is used to define a caption for the <fieldset> element.</p> <p>Let us try to understand about fieldset and legend with the help of an example:</p> <pre class="wp-block-code"><code><form action="/action_sample.php"> <fieldset> <legend>PersonalInfo:</legend> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris"><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br><br> <input type="submit" value="Submit"> </fieldset> </form> </code></pre> <ol start="7"> <li><strong>The <datalist> Element</strong></li> </ol> <p>The <datalist> element, as the name list specifies, is a list of pre-defined options for an <input> element.</p> <p>Users will be able to see a drop-down list of the pre-defined option when they input data.</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>The datalist Element</h2> <form action="/action_sample.php"> <input list="cars" name="cars"> <datalist id="cars"> <option value="Maruti"> <option value="Ford"> <option value="Skoda"> <option value="Audi"> <option value="Hyundai"> </datalist> <input type="submit"> </form> </body> </html> </code></pre> <ol start="8"> <li><strong>The <output> Element</strong></li> </ol> <p>The <output> element, as the name specifies, represents the result of any calculation. </p> <p>Let us try to understand the output element with the help of an example.</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>The output Element</h2> <form action="/action_sample.php" input="x.value=parseInt(a.value)+parseInt(b.value)"> 0 <input type="range" id="x" name="x" value="50"> 100 + <input type="number" id="y" name="y" value="50"> = <output name="z" for="x y"></output> <br><br> <input type="submit"> </form> </body> </html> </code></pre> <h4 class="wp-block-heading" id="html-input-types">HTML Input Types</h4> <p>Now let’s learn about the different types for the HTML <input> element.</p> <p>The different input types that are used in HTML forms are mentioned below:</p> <p><input type=”button”></p> <p><input type=”checkbox”></p> <p><input type=”color”></p> <p><input type=”date”></p> <p><input type=”datetime-local”></p> <p><input type=”email”></p> <p><input type=”file”></p> <p><input type=”hidden”></p> <p><input type=”image”></p> <p><input type=”month”></p> <p><input type=”number”></p> <p><input type=”password”></p> <p><input type=”radio”></p> <p><input type=”range”></p> <p><input type=”reset”></p> <p><input type=”search”></p> <p><input type=”submit”></p> <p><input type=”tel”></p> <p><input type=”text”></p> <p><input type=”time”></p> <p><input type=”url”></p> <p><input type=”week”></p> <p>Please Note: The default value of the type attribute is “text”.</p> <ol> <li><strong>Input Type Text</strong></li> </ol> <p><input type=”text”> of the HTML form defines a text input field with single line</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Text field</h2> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id=" first_name " name=" first_name "><br> <label for="last_name">Last name:</label><br> <input type="text" id=" last_name " name=" last_name "><br><br> <input type="submit" value="Submit"> </form> <p>Note that the form itself is not visible.</p> </body> </html> </code></pre> <ol start="2"> <li><strong>Input Type Password</strong></li> </ol> <p><input type=”password”>, this input type defines a password field:</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Password field</h2> <p>The <strong>input type="password"</strong> defines a password field:</p> <form action="/action_page.php"> <label for="loginid">LoginId:</label><br> <input type="text" id="loginid" name="loginid"><br> <label for="pwd">Password:</label><br> <input type="password" id="pwd" name="pwd"><br><br> <input type="submit" value="Submit"> </form> <p>The characters in a password field are masked (shown as asterisks or circles).</p> </body> </html> </code></pre> <p>This is how the HTML code above will be displayed in a browser:</p> <ol start="3"> <li><strong>Input Type Submit</strong></li> </ol> <p><input type=”submit”>, as the name indicates, is used to define a button for submitting form data to a form handler.</p> <p>The form-handler is usually a server page that has a script for processing input data.</p> <p>The form-handler is defined in the form action attribute:</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Submit Button</h2> <p>The <strong>input type="submit"</strong> defines a button for submitting form data to a form-handler:</p> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris"><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br><br> <input type="submit" value="Submit"> </form> <p>If you click "Submit", the form-data will be sent to a page called "/action_sample.php".</p> </body> </html> </code></pre> <p>Display in browser:</p> <ol start="4"> <li><strong>Input Type Reset</strong></li> </ol> <p>As the name indicates <input type=”reset”> specifies a reset button that resets all the form values to their default values:</p> <p>Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Reset Button</h2> <p>The <strong>input type="reset"</strong> defines a reset button that resets all form values to their default values:</p> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris"><br> <label for="lname">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br><br> <input type="submit" value="Submit"> <input type="reset"> </form> <p>If you change the input values and then click the "Reset" button, the form-data will be reset to the default values.</p> </body> </html> </code></pre> <p>This is how the HTML code above will be displayed in a browser:</p> <ol start="5"> <li><strong>Input Type Radio</strong></li> </ol> <p>Radio buttons as the name specifies allows user to select only one choice of the available choices. Its syntax is <input type=”radio”> defines a radio button.</p> <p>Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Radio Buttons</h2> <p>The <strong>input type="radio"</strong> defines a radio button:</p> <form action="/action_page.php"> <input type="radio" id="Maths" name="Subject" value="Maths"> <label for="Maths">Maths</label><br> <input type="radio" id="Physics" name="Subject" value="Physics"> <label for="Physics">Physics</label><br> <input type="radio" id="Chemistry" name="Subject" value="Subject"> <label for="Chemistri">Chemistry</label><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p>This is how the HTML code above will be displayed in a browser:</p> <ol start="6"> <li><strong>Input Type Checkbox</strong></li> </ol> <p>As the name specifies, the Input type Checkbox defines a checkbox.</p> <p>Its syntax is <input type=”checkbox”></p> <p>With checkboxes a user can select zero or more options from limited number of options.</p> <p>Example code:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Checkboxes</h2> <p>The <strong>input type="checkbox"</strong> defines a checkbox:</p> <form action="/action_sample.php"> <input type="checkbox" id="subject1" name="subject1" value="Maths"> <label for="subject1"> I love Maths</label><br> <input type="checkbox" id="subject2" name="subject2" value="Physics"> <label for="subject2"> I love Physics</label><br> <input type="checkbox" id="subject3" name="subject3" value="Chemistry"> <label for="subject3"> I love Chemistry</label><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p>This is how the HTML code above will be displayed in a browser:</p> <ol start="7"> <li><strong>Input Type Button</strong></li> </ol> <p>As the name specifies, Input type button defines a button</p> <p>Syntax is: <input type=”button”> </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Input Button</h2> <input type="button" onclick="alert('Hello Everyone!!!')" value="Click Me!"> </body> </html> </code></pre> <p></p> <ol start="8"> <li><strong>Input Type Color</strong></li> </ol> <p>As the name specifies, Input type color is used for fields that contain color. Syntax is: <input type=”color”> </p> <p>Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Show a Color Picker</h2> <p>The <strong>input type="color"</strong> is used for input fields that should contain a color.</p> <form action="/action_sample.php"> <label for="favcolor">What is your favorite color:</label> <input type="color" id="favcolor" name="favcolor" value="#ff0000"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="9"> <li><strong>Input Type Date</strong></li> </ol> <p>As the name specifies, Input type date is used  for fields that contain date. Its syntax is : <input type=”date”> </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Date Field</h2> <p>The <strong>input type="date"</strong> is used for input fields that should contain a date.</p> <form action="/action_page.php"> <label for="birthday">When is your Birthday:</label> <input type="date" id="birthday" name="birthday"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="10"> <li><strong>Input Type Datetime-local</strong></li> </ol> <p>This input type specifies a date and time input field, with no time zone.</p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Local Date Field</h2> <form action="/action_page.php"> <label for="birthdaytime">Birthday (date and time):</label> <input type="datetime-local" id="birthdaytime" name="birthdaytime"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <ol start="11"> <li><strong>Input Type Email</strong></li> </ol> <p>As the name specifies , this input type is used for input field that contain an email address. Syntax is <input type=”email”> </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Email Address</h2> <form action="/action_sample.php"> <label for="email">Enter your email:</label> <input type="email" id="email" name="email"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="12"> <li><strong>Input Type File</strong></li> </ol> <p>As the name specifies, the Input type file defines a file-select field and also a “Browse” button that is used for file uploads. The syntax is  <input type=”file”> </p> <p>Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>File upload</h1> <form action="/action_sample.php"> <label for="sample_file">Select a file:</label> <input type="file" id="sample_file" name="sample_file"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="13"> <li><strong>Input Type Hidden</strong></li> </ol> <p>As the name specifies, input type hidden defines a hidden input field that is not visible to the user. Syntax is : <input type=”hidden”> </p> <p>Please Note: The value of field with input type hidden is not displayed to the user in the page’s content but it is visible using any browser’s developer tools or “View Source” functionality. </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>Hidden Field</h1> <form action="/action_sample.php"> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <input type="hidden" id="emailid" name="emailid" value="sample@gmail.com"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="14"> <li><strong>Input Type Month</strong></li> </ol> <p>As the name specifies, with this input type, the user can select a month and a year. Syntax is: <input type=”month”> </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Month Field</h2> <form action="/action_sample.php"> <label for="bdaymonth">Birthday (month and year):</label> <input type="month" id="bdaymonth" name="bdaymonth"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="15"> <li><strong>Input Type Number</strong></li> </ol> <p>As is obvious from the name, input type number defines a numeric input field. </p> <p>Syntax is: The <input type=”number”></p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Number Field</h2> <form action="/action_sample.php"> <label for="rollno">Roll No. (between 1 and 50):</label> <input type="number" id="rollno" name="rollno" min="1" max="50"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="16"> <li><strong>Input Restrictions</strong></li> </ol> <p>Please find below the list of some common input restrictions:</p> <figure class="wp-block-table"><table><tbody><tr><td><strong>Attribute</strong></td><td><strong>Description</strong></td></tr><tr><td>Checked</td><td>This attribute of the HTML form specifies that an input field should be pre-selected when the page loads (for type=”checkbox” or type=”radio”).</td></tr><tr><td>Disabled</td><td>This attribute of the HTML form specifies that an input field should be disabled.</td></tr><tr><td>Max</td><td>This attribute specifies the maximum value for an input field.</td></tr><tr><td>Maxlength</td><td>This attribute of the HTML form specifies the maximum number of character for an input field.</td></tr><tr><td>Min</td><td>This attribute specifies the minimum value for an input field.</td></tr><tr><td>Pattern</td><td>This attribute of the HTML form specifies a regular expression to check the input value against on form submission.</td></tr><tr><td>Readonly</td><td>This attribute specifies that an input field is read-only (cannot be changed).</td></tr><tr><td>Required</td><td>This attribute specifies that an input field is required (must be filled out).</td></tr><tr><td>Size</td><td>This attribute specifies the width (in characters) of an input field.</td></tr><tr><td>Step</td><td>This attribute of the HTML form specifies the legal number intervals for an input field.</td></tr><tr><td>Value</td><td>This attribute specifies the default value for an input field.</td></tr></tbody></table></figure> <ol start="17"> <li><strong>Input Type Range</strong></li> </ol> <p>As the name range specifies, the input type range allows to enter a number whose exact value is not important. Syntax is  <input type=”range”> . The default range is defined from 0 to 100. </p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Range Field</h2> <form action="/action_sample.php" method="get"> <label for="vol">Volume (between 0 and 50):</label> <input type="range" id="vol" name="vol" min="0" max="50"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="18"> <li><strong>Input Type Search</strong></li> </ol> <p>As the name specifies, input type search is used for search fields. Syntax is : The <input type=”search”></p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>Search Field</h2> <form action="/action_sample.php"> <label for="gsearch">Search Google:</label> <input type="search" id="gsearch" name="gsearch"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <ol start="19"> <li><strong>Input Type Tel</strong></li> </ol> <p>As the name specifies, input type Tel is used for input fields that contain a telephone number. Syntax is <input type=”tel”></p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>Time Input Control</h1> <form action="/action_sample.php"> <label for="appt">Select a time:</label> <input type="time" id="appt" name="appt"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="20"> <li><strong>Input Type Url</strong></li> </ol> <p>As the name indicates, this input type is used for fields that contain URL. The syntax is <input type=”url”> .</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>URL Input Field</h1> <form action="/action_sample.php"> <label for="homepage">Homepage:</label> <input type="url" id="homepage" name="homepage"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="21"> <li><strong>Input Type Week</strong></li> </ol> <p>The <input type=”week”> allows the user to select a week and year.</p> <p>For Example</p> <pre class="wp-block-code"><code><form> <label for="week">Select a week:</label> <input type="week" id="week" name="week"> </form> </code></pre> <p><strong>HTML Input Type Attribute</strong></p> <p>Now let’s learn about the HTML Input Attributes</p> <ol> <li><strong>The value Attribute</strong></li> </ol> <p>The value attribute of HTML input element defines an initial value for an input field.</p> <p>For Example:</p> <p>Input fields with initial (default) values:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>Input value attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris"><br> <label for="lname">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="2"> <li><strong>The readonly Attribute</strong></li> </ol> <p>As the name specifies, the readonly attribute of the HTML input element defines that an input field is read-only. This field cannot be modified, and its value is sent when submitting the form.</p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>Readonly attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris" readonly><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="3"> <li><strong>The disabled Attribute</strong></li> </ol> <p>As the name specifies ,the disabled attribute of HTML input element specifies that an input field should be disabled.</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input disabled attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris" readonly><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="4"> <li><strong>The size Attribute</strong></li> </ol> <p>As the name specifies, the size attribute of HTML input element specifies the  width, in characters, of an input field. Its defaut value is 20</p> <p>For Example</p> <p>To set a width for an input field, which in PIN in below example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input size attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris" readonly><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br> <label for="pin">PIN:</label><br> <input type="text" id="pin" name="pin" size="4"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="5"> <li><strong>The maxlength Attribute</strong></li> </ol> <p>This attribute specifies the maximum number of characters that can be allowed in an input field.</p> <p>Example</p> <p>Below snippet sets a maximum length for an input field PIN:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input maxlength attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label><br> <input type="text" id="first_name" name="first_name" value="Chris" readonly><br> <label for="last_name">Last name:</label><br> <input type="text" id="last_name" name="last_name" value="Darwin"><br> <label for="age">Age:</label><br> <input type="text" id="age" name="age" value="27"><br> <label for="pin">PIN:</label><br> <input type="text" id="pin" name="pin" maxlength="4" size="4"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="6"> <li><strong>The min and max Attributes</strong></li> </ol> <p>This attribute specifies the minimum and maximum values for an input field of HTML form.</p> <p>For Example:</p> <p>Below code snippet sets a max date, a min date, and a range of legal values:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input min and max attributes</h1> <form action="/action_sample.php"> <label for="date_max">Enter a date before 1980-01-01:</label> <input type="date" id="date_max" name="date_max" max="1979-12-31"><br><br> <label for="datemin">Enter a date after 2000-01-01:</label> <input type="date" id="datemin" name="datemin" min="2000-01-02"><br><br> <label for="quantity">Quantity (between 1 and 5):</label> <input type="number" id="quantity" name="quantity" min="1" max="5"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="7"> <li><strong>The multiple Attribute</strong></li> </ol> <p>As indicated by the name, the multiple attribute of the HTML form element specifies that the user is allowed to enter more than one value in an input field.</p> <p>For Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input multiple attributes</h1> <form action="/action_sample.php"> <label for="files">Select files:</label> <input type="file" id="files" name="files" multiple><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="8"> <li><strong>The pattern Attribute</strong></li> </ol> <p>The pattern attribute of the HTML input element specifies a regular expression that the input field’s value is checked for when the user submits the form.</p> <p>For Example:</p> <p>In the below example, an input field that can contain only three letters. It cannot have any number or special characters:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input pattern attribute</h1> <form action="/action_sample.php"> <label for="ccode">Country code:</label> <input type="text" id="country_code" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="9"> <li><strong>The placeholder Attribute</strong></li> </ol> <p>As the name specifies, the placeholder attribute specifies a sample value or short description of the expected format in the input field.</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input placeholder attribute</h1> <form action="/action_sample.php"> <label for="phone">Enter phone number:</label> <input type="tel" id="phone" name="phone" placeholder="123-45-678" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="10"> <li><strong>The required Attribute</strong></li> </ol> <p>As the name indicates, the required attribute specifies that an input field is required to be filled before submitting the form.</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input required attribute</h1> <form action="/action_sample.php"> <label for="Loginid">LoginId:</label> <input type="text" id="Loginid" name="Loginid" required><br><br> <label for="password">Password:</label> <input type="text" id="password" name="password" required><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="11"> <li><strong>The step Attribute</strong></li> </ol> <p>This attribute specifies the legal number intervals for an input field in a HTML form input element.</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input step attribute</h1> <form action="/action_sample.php"> <label for="points">Points:</label> <input type="number" id="points" name="points" step="3"> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="12"> <li><strong>The autofocus Attribute</strong></li> </ol> <p>As the name autofocus indicates, the autofocus attribute specifies that an input field should automatically get focus whenever the page is loaded.</p> <p>For Example:</p> <p>Suppose the user wants that when the page loads the automatic focus is on Firstname:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input autofocus attribute</h1> <form action="/action_sample.php"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" autofocus><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="13"> <li><strong>The height and width Attributes</strong></li> </ol> <p>As the name indicates, the height and width attributes specify an <input type=”image”> element of HTML form.</p> <p>For example:</p> <p>The example below define an image as the submit button, with height and width attributes:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input height and width attributes</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label> <input type="text" id="first_name" name="first_name"><br><br> <label for="last_name">Last name:</label> <input type="text" id="last_name" name="last_name"><br><br> <input type="image" src="img_submit.gif" alt="Submit" width="48" height="48"> </form> </body> </html> </code></pre> <ol start="14"> <li><strong>The list Attribute</strong></li> </ol> <p>As the name indicates, the list attribute of HTML input refers to a <datalist> element that contains pre-defined options.</p> <p>For Example:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input list attribute</h1> <form action="/action_sample.php"> <input list="browsers" name="browser"> <datalist id="browsers"> <option value="Internet Explorer"> <option value="Firefox"> <option value="Chrome"> <option value="Safari"> </datalist> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p></p> <ol start="15"> <li><strong>The autocomplete Attribute</strong></li> </ol> <p>As the name indicates, the autocomplete attribute specifies whether a form or an input field should have autocomplete feature on or off.</p> <p>Example</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The autocomplete attribute</h1> <form action="/action_sample.php" autocomplete="on"> <label for="first_name">First name:</label> <input type="text" id="first_name" name="first_name"><br><br> <label for="last_name">Last name:</label> <input type="text" id="last_name" name="last_name"><br><br> <label for="address">Address:</label> <input type="text" id="address" name="address"><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email" autocomplete="off"><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <p><strong>HTML Input form* Attributes</strong></p> <p>Now let us learn about the different form* attributes for the HTML <input> element.</p> <ol> <li><strong>The form Attribute</strong></li> </ol> <p>The input form attribute of the HTML form specifies the form to which the <input> element belongs to.</p> <p>For Example:</p> <p>In the below code snippet, an input field is located outside of the HTML form but it is still a part of the form.</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input form attribute</h1> <form action="/action_sample.php" id="form1"> <label for="first_name">First name:</label> <input type="text" id="first_name" name="first_name"><br><br> <input type="submit" value="Submit"> </form> <label for="last_name">Last name:</label> <input type="text" id="last_name" name="last_name" form="form1"> </body> </html> </code></pre> <ol start="2"> <li><strong>The formaction Attribute</strong></li> </ol> <p>The input formaction attribute of the HTML form attribute specifies the URL of the file that will process the input when the form is submitted.</p> <p>For Example:</p> <p>Below example represents an HTML form with two submit buttons, but with different actions:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input formaction attribute</h1> <p>The formaction attribute specifies the URL of a file that will process the input when the form is submitted.</p> <form action="/action_sample.php"> <label for="username">Username:</label> <input type="text" id="username" name="username"><br><br> <label for="password">Password:</label> <input type="text" id="password" name="password"><br><br> <input type="submit" value="Submit"> <input type="submit" formaction="/action_sample2.php" value="Submit as Admin"> </form> </body> </html> </code></pre> <p></p> <ol start="3"> <li><strong>The formenctype Attribute</strong></li> </ol> <p>As the name indicates, the input formenctype attribute of the HTML form specifies how the form-data should be encoded when submitted. It is used only for forms with method=”post”.</p> <p>Example</p> <p>A form with two submit buttons. The first submit button sends the form-data with default encoding, the second submit button sends the form-data encoded as “multipart/form-data”:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input formenctype attribute</h1> <form action="/action_sample.asp" method="post"> <label for="username">Username:</label> <input type="text" id="username" name="username"><br><br> <input type="submit" value="Submit"> <input type="submit" formenctype="multipart/form-data" value="Submit as Multipart/form-data"> </form> </body> </html> </code></pre> <ol start="4"> <li><strong>The formmethod Attribute</strong></li> </ol> <p>As the name indicates, the input formmethod attribute of the HTML form defines the HTTP method for sending form-data to the action URL.</p> <p>The form-data can be sent as URL variables methods “get” and “post”.</p> <p>For Example:</p> <p>A form with two submit buttons. The first sends the form-data with method=”get”. The second sends the form-data with method=”post”:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input formmethod Attribute</h1> <form action="/action_sample.php" method="get" target="_blank"> <label for="first_name">First name:</label> <input type="text" id="first_name" name="first_name"><br><br> <label for="last_name">Last name:</label> <input type="text" id="last_name" name="last_name"><br><br> <label for="age">Age:</label> <input type="text" id="age" name="age"><br><br> <label for="address">Address:</label> <input type="text" id="address" name="address"><br><br> <input type="submit" value="Submit using GET"> <input type="submit" formmethod="post" value="Submit using POST"> </form> </body> </html> </code></pre> <ol start="5"> <li><strong>The formtarget Attribute</strong></li> </ol> <p>As the name formtarget indicates, the input formtarget attribute of the HTML form specifies a name or a keyword that indicates where to display the response that is received after submitting the form.</p> <p>For Example</p> <p>Below is an example of a form with two submit buttons, with different target windows:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input formtarget attribute</h1> <form action="/action_sample.php"> <label for="first_name">First name:</label> <input type="text" id="first_name" name="first_name"><br><br> <label for="last_name">Last name:</label> <input type="text" id="last_name" name="last_name"><br><br> <label for="age">Age:</label> <input type="text" id="age" name="age"><br><br> <label for="address">Address:</label> <input type="text" id="address" name="address"><br><br> <input type="submit" value="Submit"> <input type="submit" formtarget="_blank" value="Submit to a new window/tab"> </form> </body> </html> </code></pre> <ol start="6"> <li><strong>The formnovalidate Attribute</strong></li> </ol> <p>As the name indicates, the input formnovalidate attribute of the HTML form specifies that an <input> element should not be validated when submitted.</p> <p>For Example</p> <p>Below example defines a form with two submit buttons (with and without validation):</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The input formnovalidate attribute</h1> <form action="/action_sample.php"> <label for="email_id">Enter your email id:</label> <input type="email_id" id="email_id" name="email_id" required><br><br> <input type="submit" value="Submit"> <input type="submit" formnovalidate="formnovalidate" value="Submit without validation"> </form> </body> </html> </code></pre> <ol start="7"> <li><strong>The novalidate Attribute</strong></li> </ol> <p>The novalidate attribute of the HTML form is a <form> attribute.</p> <p>When this attribute is present, it indicates that novalidate specifies that all of the form-data should not be validated when submitted.</p> <p>For Example:</p> <p>Below code snippet specifies that no form-data should be validated on submit:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h1>The form novalidate attribute</h1> <form action="/action_sample.php" novalidate> <label for="username">Enter your username:</label> <input type="username" id="username" name="username" required><br><br> <input type="submit" value="Submit"> </form> </body> </html> </code></pre> <h2 class="wp-block-heading" id="html-links"><strong>HTML Links </strong></h2> <p>The HTML has a connected label that can connect the rakish sections .href is the tag utilized for the HTML interface. </p> <p>The connection tag can be utilized to put a connection Ina site at that point click that interface that page is to divert into that site page.</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>HTML Links</h2> <p>HTML joins are characterized with the a tag:</p> <a href="https://www.greatlakes.com">This is a link</a> </body> </html> </code></pre> <p><strong>Output</strong></p> <figure class="wp-block-image size-large is-resized"><img decoding="async" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20405%20116'%3E%3C/svg%3E" alt="" class="wp-image-37948" width="405" height="116" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/29203640/image-48.png"/><noscript><img decoding="async" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/29203640/image-48.png" alt="" class="wp-image-37948" width="405" height="116"/></noscript></figure> <h2 class="wp-block-heading" id="html-image-links"><strong>HTML Image Links</strong></h2> <p>Now that we’ve seen how to use links in HTML, the next step in the HTML Tutorial is to see how to add Image Links. To use an image as a link, it is quite simple. All we need to do is use an image inside the hyperlink in place of text. </p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <body> <h2>HTML Links</h2> <p>HTML joins are characterized with the a tag:</p> <a href="https://www.greatlakes.com">This is a link</a> <img src="https://d1m75rqqgidzqn.cloudfront.net/images/GLlogo.png" alt="Great Lakes" border="0"> </a> </body> </html></code></pre> <h2 class="wp-block-heading" id="html-tables"><strong>HTML Tables</strong></h2> <p>HTML tables are used by web developers to arrange data into rows and columns.</p> <p>To defines an HTML table, <table> tag is used.</p> <p>The table row in HTML is defined with a <tr> tag. The table header in HTML is defined with a <th> tag. Each table data/cell in HTML is defined with a <td> tag.</p> <p>By default in HTML table, the text in <th> elements are bold and centered.</p> <p>By default in HTML table, the text in <td> elements are regular and left-aligned.</p> <p>Code:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; } td, th { border: 1px solid #dddddd; text-align: left; padding: 8px; } tr:nth-child(even) { background-color: #dddddd; } </style> </head> <body> <h2>HTML Table</h2> <table> <tr> <th>Company</th> <th>Contact</th> <th>Country</th> </tr> <tr> <td>Company1</td> <td>Contact1</td> <td>Country1</td> </tr> <tr> <td>Company2</td> <td>Contact2</td> <td>Country2</td> </tr> <tr> <td>Company3</td> <td>Contact3</td> <td>Country3</td> </tr> <tr> <td>Company4</td> <td>Contact4</td> <td>Country4</td> </tr> <tr> <td>Company5</td> <td>Contact5</td> <td>Country5</td> </tr> <tr> <td>Company6</td> <td>Contact6</td> <td>Country6</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h4 class="wp-block-heading" id="adding-a-border"><strong>Adding a Border</strong></h4> <p>The CSS border property is used to add a border to a table:</p> <p>Code:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <h2>Table With Border</h2> <p>Use the CSS border property to add a border to the table.</p> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Sample_fname1</td> <td>Sample_lname1</td> <td>50</td> </tr> <tr> <td>Sample_fname2</td> <td>Sample_lname2</td> <td>40</td> </tr> <tr> <td>Sample_fname3</td> <td>Sample_lname3</td> <td>30</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <p>The user should define borders for both the table and the table cells.</p> <h4 class="wp-block-heading" id="collapsed-borders"><strong>Collapsed Borders</strong></h4> <p>The CSS border-collapse property is added to let the borders collapse into one border:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } </style> </head> <body> <h2>Collapsed Borders</h2> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Sample_fname1</td> <td>Sample_lname1</td> <td>50</td> </tr> <tr> <td>Sample_fname2</td> <td>Sample_lname2</td> <td>40</td> </tr> <tr> <td>Sample_fname3</td> <td>Sample_lname3</td> <td>30</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h4 class="wp-block-heading" id="cell-padding"><strong>Cell Padding</strong></h4> <p>Cell padding in HTML is used to specify the space between the cell content and its borders. If the user does not specify a padding, the table cells will be displayed without padding. The CSS padding property of the CSS is used to set the padding in HTML tables:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; } </style> </head> <body> <h2>Cellpadding</h2> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Sample_fname1</td> <td>Sample_lname1</td> <td>50</td> </tr> <tr> <td>Sample_fname2</td> <td>Sample_lname2</td> <td>40</td> </tr> <tr> <td>Sample_fname3</td> <td>Sample_lname3</td> <td>30</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h2 class="wp-block-heading" id="LeftAlignHeadings "><strong>Left-Align Headings</strong></h2> <p>The  table headings in HTML are bold and centered by default. The CSS text-align property is used to left-align the table headings:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 5px; } th { text-align: left; } </style> </head> <body> <h2>Left-align Headings</h2> <p>The text-align property of CSS is used to left-align the table headings</p> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Sample_fname1</td> <td>Sample_lname1</td> <td>50</td> </tr> <tr> <td>Sample_fname2</td> <td>Sample_lname2</td> <td>40</td> </tr> <tr> <td>Sample_fname3</td> <td>Sample_lname3</td> <td>30</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h4 class="wp-block-heading" id="border-spacing"><strong>Border Spacing</strong></h4> <p>The space between the cells is specified by border-spacing. The CSS border-spacing property is used to set the border-spacing for a table:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; padding: 5px; } table { border-spacing: 15px; } </style> </head> <body> <h2>Border Spacing</h2> <p>The space between the cells is specified by border spacing in the HTML</p> <table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Age</th> </tr> <tr> <td>Sample_fname1</td> <td>Sample_lname1</td> <td>50</td> </tr> <tr> <td>Sample_fname2</td> <td>Sample_lname2</td> <td>40</td> </tr> <tr> <td>Sample_fname3</td> <td>Sample_lname3</td> <td>30</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h4 class="wp-block-heading" id="colspan-attribute"><strong>Colspan Attribute</strong></h4> <p>In the HTML table, the colspan attribute is used to make a cell span to more than one column.</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 5px; text-align: left; } </style> </head> <body> <h2>Cell that spans over two columns</h2> <p>The colspan attribute is used to make a cell span more than one column .</p> <table style="width:100%"> <tr> <th>Name</th> <th colspan="2">Telephone</th> </tr> <tr> <td>Sample_Name1</td> <td>Phone1</td> <td>Phone2</td> </tr> </table> </body> </html> </code></pre> <p></p> <p></p> <h4 class="wp-block-heading" id="rowspan-attribute"><strong>Rowspan Attribute</strong></h4> <p>Use the rowspan attribute of HTML to make a cell span in more than one row:</p> <pre class="wp-block-code"><code><!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 5px; text-align: left; } </style> </head> <body> <h2>Cell that spans two rows</h2> <p>Use the rowspan attribute, to make a cell span in more than one row. </p> <table style="width:100%"> <tr> <th>Name:</th> <td>Sample_Name1</td> </tr> <tr> <th rowspan="2">Telephone:</th> <td>Phone1</td> </tr> <tr> <td>Phone2</td> </tr> </table> </body> </html> </code></pre> <h2 class="wp-block-heading" id="html-css"><strong>HTML CSS </strong></h2> <p>You’ve already seen how styles can change the appearance of different elements. Cascading Style Sheets (CSS) is a language for outlining style (e.g. colours, fonts, margin and size) to HTML documents. Let’s see how the Style sheet works. You can attach CSS with HTML documents in 3 simple ways: </p> <ul> <li><strong>Inline:</strong></li> </ul> <p>As the name says, inline CSS used to apply a style to one HTML element at a time with the help of style attribute. Let’s see the example.</p> <ul> <li><strong>Internal:</strong></li> </ul> <p>Now we know that inline CSS for one line. What if we want to style the same element (e.g. all <p> tags) in the single HTML document, then we can use internal CSS. An internal CSS is defined in the <Head> section within <Style> tags.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> h1 {color: red;} P {color: green;} </style> </head> <body> <h1>HTML Tutorials </h1> <p>Paragraph1</p> <p>Paragraph2</p> </body> </html> </pre></div> <ul> <li><strong>External:</strong></li> </ul> <p>In the above two methods, we embedded the style sheet in the HTML document using the style element. The external style sheets are commonly used when you want to do style modifications on different pages. An external style sheet (.css file) contains several style rules. You can attach a .css document to one or more HTML documents with the help of <link> tag inside the head section.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <link rel-"stylesheet" href-"style.css"> </head> <body> <h1>HTML Tutorials</h1> <p>Paragraph1</p> <p>Paragraph2</p> </body> </html> </pre></div> <p>style.css file expressions like:</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> h1 { color: orange; } p{ color: skyblue; } </pre></div> <p>Let’s check some commonly used font-related CSS properties: </p> <p>color <br>font-family<br>font-size<br>font-style</p> <figure class="wp-block-table"><table><tbody><tr><td>color</td><td>Colour property of CSS used to change the colour of the text.</td></tr><tr><td>You can use the colour value (numeric | name)</td></tr><tr><td>font-family</td><td>font-family property of CSS used to change the font</td></tr><tr><td>You can use values as (one or more font names separated by commas)</td></tr><tr><td>font-size</td><td>font-size property of CSS used to change the font size</td></tr><tr><td>You can use values as (percentage | length unit)</td></tr><tr><td>font-style</td><td>font-style property of CSS used to change the font style</td></tr><tr><td>You can use values as(italic | oblique)</td></tr></tbody></table></figure> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> h1{ color: #FF0000; font-family: courier; font-size: 120%; font-style: italic; } pl color: blue; font-family: Verdana, sans-serif; font-size: 12px; font-style: oblique; } </style> </head> <body> <h1>HTML Tutorial</h1> <p>Paragraph 1</p> <p>Paragraph 2</p> </body> </html> </pre></div> <p>Let’s check some commonly used box-related CSS properties:</p> <p><strong>Padding:</strong></p> <p>The area (space) between the content and boundaries is the padding.</p> <p><strong>Border:</strong></p> <p>The border is a line covering the element and its surrounding area such as padding.</p> <p><strong>Margins:</strong></p> <p>An optional amount of space added on the outside of the border is the margin.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> p{ border: 2px dotted red; padding: 30px; margin: 50px; } </style> </head> <body> <h1 styles="colour:green;">HTML Tutorial</h1> <p>Paragraph1</p> <p>Paragraph2</p> </body> </pre></div> <h2 class="wp-block-heading" id="html-classes"><strong>HTML Classes </strong></h2> <p>The class attribute organizes HTML elements into abstract groups. Different HTML elements can belong to the same class name. With the help of class attributes, you can use a single style rule to apply styles to all of the classed elements at once or manipulate them all with a script.</p> <p>With the help of class attributes, you can apply styles to all of the classed elements together with a single style rule or control them all with a script.</p> <p>We have to write (.)class_name to style that class. Let’s check one example of the class attribute.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> .engineering color: red; text-align: center; } .fields { color:blue; } </style> </head> <body> <h1 class="engineering">Engineering</h2> <h2 class="fields">Paragraph about IT engineering</h2> <h2 class="fields">Paragraph about Mechanical engineering</h2> <h2 class="fields">Paragraph about Civil engineering</h2> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-marquees"><strong>HTML Marquees </strong></h2> <p>The HTML < marquee > tag is used to rotate text or picture segments, depending on the settings, either horizontally or vertically the screen of your website. The marquee tag has deprecated in HTML5 for the same results you can use CSS and JavaScript. To learn more about JavaScript, you can check our JavaScript blog. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> marquee{ font-size: 20px; font-weight: 700; color: skyblue; } </style> </head> <body> <marquee direction="left">Marquee Text here.</marquee> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-file-path"><strong>HTML File Path </strong></h2> <p>You can link different files externally by providing the path location of that file. You can use an absolute or relative path to attach the following files:</p> <ul> <li>Web pages</li> <li>Images</li> <li>Style sheets</li> <li>JavaScript</li> </ul> <p>An absolute path is an URL whereas relative path points to a file in the folder. We’ll see an example of both attachment methods.</p> <p>Absolute path example:</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <body> <h2>Absolute file path</h2> <img src="https://d1vwxdpzbgdqj.cloudfront.net/s3-public-images/learning-partners/greatlearning-brand .png" alt="greatlearning" style="width:300px"> </body> </html> </pre></div> <p><strong>Relative path example:</strong></p> <p><img src=” logo.jpg”><br><img src=”images/logo.jpg”><br><img src=”/images/ logo.jpg”><br><img src=”../ logo.jpg”></p> <h2 class="wp-block-heading" id="html-embed-multimedia"><strong>HTML Embed Multimedia</strong></h2> <p>In today’s world multimedia is the most important; component of the web. Multimedia can be almost anything, like images, audios, videos, records, music, animations, and many more. You can embed multimedia files in your website with the help of <embed> tag. </p> <p>There are many video and audio formats. HTML standard supports the MP4, WebM, and Ogg formats for video whereas MP3, WAV, and Ogg formats for audio. HTML5 provides native audio and video tags as <video> & <audio>. We’ll check both methods to embed multimedia in a web page.</p> <p>Some attributes which needed for native elements as below:</p> <p><strong>src:</strong> The path/URL for the audio/video to be played.<br><strong>height:</strong> The height of the video.<br><strong>width:</strong> The width of the video.<br><strong>Controls:</strong> it gives controls for audio/video like play, pause, volume, etc.  </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <embed type="video/mp4" src="video.mp4" width="426" height="240"> <embed type="audio/mp3" src="music.mp3"> </body> </html> </pre></div> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <body> <video width="426" height="240" controls> <source src="video.mp4" type="video/webm"> </video> <br> <audio controls> <source src="music.ogg" type="audio/ogg"> </audio> </body> </html> </pre></div> <p><em>Output: video and music file available in the output folder</em></p> <h2 class="wp-block-heading" id="html-quotations"><strong>HTML Quotations </strong></h2> <p>The quotation elements used in HTML to quote any text in a web document. We can easily differentiate quoted texts apart from normal text. Let’s check commonly used quotation elements of HTML:<br></p> <p><strong>q quotation:</strong></p> <p>The < q > HTML tag is used to quote small parts of text. It’s an inline quotation with both opening and closing tags. </p> <p><strong>blockquote quotation:</strong></p> <p>The <blockquote> HTML tag is used to quote a large section such as paragraph. It changes the alignment of the block to look unique from others.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <p>With the help of HTML quotation <q>You can quote facts</a> to look different from normal text. <blockquote>Block quotation is for block-level element such as paragraphs, lists, etc. It changes alignment of block to look different.</blockquote> </body> </html> </pre></div> <p><strong>address quotation:</strong></p> <p> The <address> HTML tag used to create an area for an author contact information on the website. It is mostly positioned at the end of the document. The browsers always apply a line break before and after the <address> tag. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <address> Contact us<br> Blog Coordinator<br> test address<br> mob. 90000<br> </address> </body> </html> </pre></div> <p><strong>abbr quotation:</strong></p> <p>The <abbr> HTML tag used to write a shortened form of a word or phrase. The full-form will be pop-up when you mouse hovers on the <abbr> element.</p> <p><strong>bdo quotation:</strong></p> <p>The <bdo> HTML tag is used to override a text in bi-directional format. Direction can be left-to-right or right-to-left. </p> <p><strong>cite quotation:</strong></p> <p>The <cite> HTML tag is used for citation. The text written in the <cite> tags draws in italic on the browser.   </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <p>The <abbr title="Hypertext Markup Language">HTML</abbr>Tutorial</p> <bdo dir="ltr">You can write text from left to right.</bdo><br> <bdo dir="rtl">You can write text from right to left.</bdo> <p><cite>Blog Written</cite> by <a href="https://www.mygreatlearning.com/academy" data-internallinksmanager029f6b8e52c="10" title="GLA Homepage links" target="_blank" rel="noopener">great learning academy</a>.</p> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-semantic-elements"><strong>HTML Semantic Elements </strong></h2> <p>Semantic elements accurately describe the meaning of words inside an HTML tag. For example, header, table, form, article, footer, etc. Let’s check some semantic elements of HTML:</p> <p><strong>figure and figcaption element:</strong></p> <p>The <figure> element used to add content that displays image, snippet, etc. on a web page. A description can attach above or below to the figure using the <figcaption> element. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <figure> <img src="diagram.png" alt="figure_1"> <figcaption>Figure 1. Figure caption is here</figcaption> </figure> </body> </html> </pre></div> <p><strong>section and article elements:</strong></p> <p>To divide web documents into groups that have a meaningful reason to be grouped like Introduction, conclusion, etc. we can use <section> elements. The <article> tag includes independent content that does not need any other reference, Like YouTube page that contain a different kind of videos. </p> <p><strong>mark elements:</strong></p> <p>The <mark> element is useful to draw special attention to words.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <article> <h1>History of India</h1> <section> <h2>History of<mark>Mughal</mark>empire</h2> <p>...</p> </section> </article> </pre></div> <p><strong>details and summary elements:</strong></p> <p>The <details> element used to deliver extra information that is hidden by default. When you use <details> element, <summary> element also needed to display heading for <details> element. Users can click on heading to view additional information.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <details> <summary>Heading here</summary> <p>Additional information is here.....</p> </details> </body> </html> </pre></div> <p><strong>header and footer elements:</strong></p> <p>The <header> element is used for a container that occurs at the top of a web page. The header element contains information like a logo, headings, etc. The <footer> tag contains information that usually comes at the end of a page such as its author, copyright information, etc.  </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <article> <header> <h1=HTML Tutorial</h1> <p>by Great Learning Acadumy</p> </header> <p>...article content here...</p> <footer> <p>P<small>Coptright &copt:2020 great learning acadummy</small></p> <nav> <ul> <li>Next</li> <li>Previous</li> </ul> </nav> </header> </article> </body> </html> </pre></div> <p><strong>aside elements:</strong></p> <p>The <aside> element comprises independent content that does not need any other reference. An aside may hold a list of links, or anything else that might connect with the surrounding content but not part of it. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <h1>Web Tutorials</h1? <p>Tutorial for Front end developers...</p> <p>Tutorials for Back end developers...</p> <aside> <h2>Programming languages</h2> <ul> <li>a href="#">Python</a></li> <li>a href="#">Java</a></li> </ul> </aside> </pre></div> <p><strong>nav elements:</strong></p> <p>The <nav> element provides a section that contains navigation links for a site. You can use the <nav> tag for the link that provides primary navigation around the website.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <p> Tutorials: </p> <nav> <a href = "#">HTML</a> | <a href = "#">Python</a> | <a href = "#">Java</a> | <a href = "#">Android</a> | </nav> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-frames"><strong>HTML Frames </strong></h2> <p>HTML frames used to split the browser window into several sections where a separate HTML document can be loaded in each portion. The bunch of frames displayed in the browser window is called a frameset.  </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <title>HTML Frames</title> </head> <frameset cols = "30%,40%,30%"> <frame name = "left" src ="#"/> <frame name = "center" src ="#"/> <frame name = "rght" src ="#"/> <noframes> <body> Browser doesn't support frames.</body> </noframes> </frameset> </html> </pre></div> <p>You can see <frameset> tag replaced <body> tag while creating frames. <body> tag is the most important tag in HTML that’s the reason <frame> and <frameset> tag deprecated in HTML5.</p> <h2 class="wp-block-heading" id="html-iframes"><strong>HTML Iframes </strong></h2> <p><iframe> stands for Inline Frame. The <iframe> tag used to embed a separate HTML file within a web page which can load separately. Iframes are distinct from frames because they are added in a web page, much like an image or video. Iframes add all the advantages of frames and none of the flaws. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> </head> <body> <h2>Iframes examle</h2> <iframe src="#" height=width="300" title="iframe 1"></iframe> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-entities"><strong>HTML Entities </strong></h2> <p>There are certain reserved characters in HTML. These reserved characters must be replaced with HTML Entities. If you are using less than (<) or greater than (>) symbols in your text, there is a chance of getting mixed up with tags. To display these reserved characters, we use HTML Entities. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> &entity_name; OR &#entity_number; </pre></div> <p>For example, to display less than, we will write: <strong>&lt;</strong> OR <strong>&#60;</strong></p> <h2 class="wp-block-heading" id="html-computer-code"><strong>HTML Computer Code</strong></h2> <p>In HTML, we can use several elements that will help us define user input and computer code. The <kbd> element is useful in defining keyboard input and the content is displayed in the browsers default monospace font. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <body> <h2>kbd Element</h2> <p>Save the document by pressing <kbd>Ctrl + S</kbd></p> </body> </html> </pre></div> <figure class="wp-block-image size-large"><img decoding="async" width="398" height="116" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20398%20116'%3E%3C/svg%3E" alt="" class="wp-image-39987" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image.png 398w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image-300x87.png 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image-150x44.png 150w" data-lazy-sizes="(max-width: 398px) 100vw, 398px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image.png" /><noscript><img decoding="async" width="398" height="116" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image.png" alt="" class="wp-image-39987" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image.png 398w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image-300x87.png 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142022/image-150x44.png 150w" sizes="(max-width: 398px) 100vw, 398px" /></noscript></figure> <p>The <samp> element can help us define a sample output from a computer program. This content is displayed in the browser’s default monospace font. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <body> <h2>samp Element</h2> <p><samp>File not found.<br>Press F1 to continue</samp></p> </body> </html> </pre></div> <figure class="wp-block-image size-large"><img decoding="async" width="225" height="134" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20225%20134'%3E%3C/svg%3E" alt="" class="wp-image-39991" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2.png 225w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2-150x89.png 150w" data-lazy-sizes="(max-width: 225px) 100vw, 225px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2.png" /><noscript><img decoding="async" width="225" height="134" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2.png" alt="" class="wp-image-39991" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2.png 225w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/19142408/image-2-150x89.png 150w" sizes="(max-width: 225px) 100vw, 225px" /></noscript></figure> <h2 class="wp-block-heading" id="html-vs-xhtml"><strong>HTML vs XHTML</strong></h2> <p>XHTML stands for eXtensible HTML. XHTML has been introduced to make HTML more extensible and versatile to deal with other data formats (e.g. XML). XHTML has capabilities of both XML and HTML. It can be used as a superior version of HTML. The first version, XHTML 1.0, is almost similar to HTML 4.01. Let’s check face-to-face comparison of both markup language.</p> <figure class="wp-block-table"><table><tbody><tr><td><strong>Parameters</strong></td><td><strong>HTML</strong></td><td><strong>XHTML</strong></td></tr><tr><td>Stands for</td><td>HyperText Markup Language</td><td>Extensible HyperText Markup Language</td></tr><tr><td>Extended from</td><td>SGML </td><td>XML, HTML</td></tr><tr><td>File extension</td><td>.html, .htm</td><td>.xhtml, .xht, .xml</td></tr><tr><td>Closing tags</td><td>not necessary</td><td>necessary</td></tr><tr><td><!DOCTYPE></td><td>not necessary</td><td>necessary</td></tr><tr><td>Elements must be in Lowercase</td><td>not necessary </td><td>necessary</td></tr><tr><td>Attribute Names must be in Lowercase</td><td>not necessary </td><td>necessary</td></tr></tbody></table></figure> <p>Let’s check one XHTML code:</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang"en"> <head> <title>Transitional DTD XHTML</title> </head> <body> <div>Hello World</div> <p>Your first XHTML file</p> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-canvas"><strong>HTML Canvas</strong></h2> <p>The word canvas says that it’s a two-dimensional rectangular area for drawing. The <canvas> tag used to draw a graphical item on the web page with the help of JavaScript. The canvas is raster-based and made up of a bunch of tiny pixels, so it has low scalability.</p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html> <head> <style> canvas { border:1px solid red; } </style> <script> window.onload=function(){ var a = document.getElementByld("canvas"); var ct = a.getContext("2d"); ct.font = "30px Arial"; ct.fillText("Draw here..",25,50); }; </script> </head> <body> <canvas id="canvas" width="200" height="80"> </canvas> </body> </html> </pre></div> <h2 class="wp-block-heading" id="html-svg"><strong>HTML SVG</strong></h2> <p>The <svg> HTML tag is used to draw scalable vector-based graphics for the web. Vector images are made up of a mathematical formula; hence there is no upper or lower limit for scaling. SVG can be customizable through script and CSS. SVG images can handle events. </p> <div class="wp-block-syntaxhighlighter-code "><pre class="brush: plain; title: ; notranslate" title=""> <!DOCTYPE html> <html lang="en"> <head> <style> svg { borger: 1px solid black; } </style> </head> </body> <svg width="200" height="200"> <circle cx="150" cy="100" r="70" style="fil:red; stroke:green; stroke-width:3"/> </svg> </body> </html> </pre></div> <p>This brings us to the end of this HTML tutorial. If you want to improve your skills be sure to enrol in our free online programs. Click on the banner below to know more!</p> <h2 class="wp-block-heading" id="html-tutorial-faqs"><strong>HTML Tutorial FAQs</strong></h2> <ol> <li>What is HTML used for?</li> </ol> <p>HTML is the programming language that is used to create web page structure and content. By structure we mean the way content is placed within paragraphs, bullets, data tables, or in the form of images and videos. </p> <p>2. What HTML means?</p> <p>HTML stands for HyperText Markup Language is a set of markup symbols and codes that are inserted into a file to display on the internet. Hypertext refers to the hyperlinks on the HTML page and markup language is the way that tags are used to define the layout of the page. The markup instructs the web browsers on how they should display the content and images. </p> <p>3. How do I start HTML coding?</p> <ol> <li>Open Notepad (Windows PC) or TextEdit (Mac)</li> <li>Write or copy an existing HTML code on Notepad</li> <li>Save the file as HTML page on your computer</li> <li>View the HTM page on your browser</li> </ol> <p>4. What is HTML syntax?</p> <p>A syntax in HTML is the arrangement of attributes and elements for the purpose of creating well-formed documents. Syntax defines the purpose of the attributes and elements along with the logical relationship between them. </p> <p>5. Is HTML coding good?</p> <p>HTML is a basic programming language for web developers and designers. It is beneficial for professionals across various disciplines such as developers, marketers, analysts, among others. It is gaining popularity across domains and hence is definitely considered as a good.</p> <p>6. How do I start learning HTML?</p> <p>You can learn HTML by reading a HTML Tutorial available on the Great Learning blog. You can also take up the <a rel="noreferrer noopener" href="https://www.mygreatlearning.com/academy/learn-for-free/courses/front-end-development-html" target="_blank">Front End Development – HTML Free</a><a rel="noreferrer noopener" href="https://www.mygreatlearning.com/academy/learn-for-free/courses/front-end-development-html" target="_blank"> </a><a rel="noreferrer noopener" href="https://www.mygreatlearning.com/academy/learn-for-free/courses/front-end-development-html" target="_blank">Online course</a> offered by Great Learning Academy and upskill today. </p> </div> </article> <div class="sharing"> <a href="https://www.facebook.com/sharer.php?t=Introduction+to+HTML%3A+What+is+HTML+and+How+it+Works%3F&u=https://www.mygreatlearning.com/blog/html-tutorial/" target="_blank" rel="nofollow"><svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#196AE5" d="M26 13a13 13 0 0 1-13 13A13 13 0 0 1 0 13a13 13 0 0 1 26 0z"/><path d="m16.477 14.016.464-2.941h-2.898v-1.91c0-.804.405-1.588 1.702-1.588h1.318V5.073s-1.196-.199-2.338-.199c-2.386 0-3.946 1.409-3.946 3.958v2.242H8.125v2.941h2.653v7.109h3.265v-7.109h2.434Z" fill="#fff"/></svg></a> <a href="https://twitter.com/intent/tweet?text=Introduction+to+HTML%3A+What+is+HTML+and+How+it+Works%3F&url=https://www.mygreatlearning.com/blog/html-tutorial/&via=Great_Learning" target="_blank" rel="nofollow"><svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#196AE5" d="M26 13a13 13 0 0 1-13 13A13 13 0 0 1 0 13a13 13 0 0 1 26 0z"/><path d="M18.809 10.35c.009.133.009.267.009.399 0 4.067-3.016 8.751-8.528 8.751a8.315 8.315 0 0 1-4.603-1.381c.241.028.474.038.724.038a5.907 5.907 0 0 0 3.721-1.314c-1.319-.028-2.422-.914-2.802-2.133.186.029.371.047.566.047.269 0 .539-.037.788-.104-1.374-.286-2.403-1.523-2.403-3.018v-.039c.399.228.863.371 1.355.39a3.095 3.095 0 0 1-1.337-2.561c0-.571.149-1.095.409-1.552a8.45 8.45 0 0 0 6.181 3.218 3.556 3.556 0 0 1-.074-.705c0-1.695 1.337-3.075 2.997-3.075.864 0 1.643.371 2.191.971a5.795 5.795 0 0 0 1.902-.743 3.055 3.055 0 0 1-1.318 1.695 5.889 5.889 0 0 0 1.726-.475 6.537 6.537 0 0 1-1.503 1.59Z" fill="#fff"/></svg></a> <a href="https://www.linkedin.com/cws/share?url=https://www.mygreatlearning.com/blog/html-tutorial/" target="_blank" rel="nofollow"><svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#196AE5" d="M26 13a13 13 0 0 1-13 13A13 13 0 0 1 0 13a13 13 0 0 1 26 0z"/><path d="M9.41 19.5H6.714v-8.679H9.41V19.5ZM8.06 9.637c-.861 0-1.56-.714-1.56-1.577a1.561 1.561 0 1 1 3.122 0c0 .862-.699 1.576-1.561 1.576ZM19.497 19.5h-2.69v-4.225c0-1.007-.02-2.298-1.402-2.298-1.401 0-1.616 1.094-1.616 2.226V19.5h-2.693v-8.679h2.586v1.184h.037c.36-.682 1.239-1.402 2.551-1.402 2.727 0 3.229 1.797 3.229 4.13V19.5h-.003Z" fill="#fff"/></svg></a> <a href="https://wa.me/?text=https://www.mygreatlearning.com/blog/html-tutorial/" target="_blank" rel="nofollow"><svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#196AE5" d="M26 13a13 13 0 0 1-13 13A13 13 0 0 1 0 13a13 13 0 0 1 26 0z"/><path d="M19.132 6.802a7.308 7.308 0 0 0-5.207-2.159 7.37 7.37 0 0 0-6.38 11.044L6.5 19.5l3.904-1.025a7.339 7.339 0 0 0 3.518.896h.003c4.056 0 7.432-3.303 7.432-7.363 0-1.967-.836-3.814-2.225-5.207Zm-5.207 11.329a6.108 6.108 0 0 1-3.117-.852l-.222-.133-2.315.607.617-2.258-.146-.232a6.099 6.099 0 0 1-.935-3.257 6.128 6.128 0 0 1 6.122-6.119c1.634 0 3.17.637 4.324 1.794 1.154 1.158 1.864 2.693 1.861 4.328 0 3.376-2.815 6.122-6.189 6.122Zm3.357-4.583c-.183-.093-1.088-.537-1.257-.597-.169-.062-.292-.093-.414.093s-.475.597-.584.723c-.106.123-.215.139-.397.046-1.082-.54-1.791-.966-2.504-2.189-.189-.325.189-.302.54-1.005.06-.123.03-.229-.017-.322-.046-.093-.414-.998-.566-1.366-.15-.358-.302-.308-.415-.316-.106-.007-.228-.007-.351-.007a.682.682 0 0 0-.491.229c-.169.186-.643.63-.643 1.535s.66 1.781.749 1.904c.093.124 1.297 1.981 3.144 2.779 1.167.504 1.625.548 2.209.462.355-.053 1.087-.445 1.24-.876.153-.431.153-.799.107-.876-.044-.084-.166-.13-.348-.219Z" fill="#fff"/></svg></a> </div> <div class="author-box"> <div class="left-block"> <img alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%20120'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/6eb51bb5957709d5aed505dde7b09d6b?s=240&d=mm&r=g 2x' class='avatar avatar-120 photo' height='120' width='120' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/6eb51bb5957709d5aed505dde7b09d6b?s=120&d=mm&r=g"/><noscript><img alt='' src='https://secure.gravatar.com/avatar/6eb51bb5957709d5aed505dde7b09d6b?s=120&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/6eb51bb5957709d5aed505dde7b09d6b?s=240&d=mm&r=g 2x' class='avatar avatar-120 photo' height='120' width='120' decoding='async'/></noscript> </div> <div class="right-block"> <div class="title">Faizan Parvez</div> <div class="bio">Faizan has been working as an Instructor of Data Structure and Algorithm for the last 1 year. He has expertise in languages such as Java, JavaScript, etc. He is a Subject Matter Expert in the field of Computer Science and a Competitive programmer. He has been working in technical content development and is a Research Analyst.</div> </div> </div> <!--<div class="random-links-container"><style>.random-links-container { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; }.link-item { width: 32%; margin-top: 5px; margin-right: 5px; height: 40px; white-space: nowrap; }.link-item a { display: block; font-size: 16px; background-color: #f5f5f5; text-align: center; text-decoration: none; border-radius: 5px; box-sizing: border-box; }.link-item a:hover { background-color: #ddd; }.view-more { width: 100%; margin-top: 20px; margin-bottom: 30px; text-align: center; }.view-more a { padding: 5px 8px; background-color: #007bff; font-size: 15px; color: #fff; border-radius: 5px;}.view-more a:hover { background-color: #0056b3; }@media screen and (max-width: 768px) {.random-links-container {width: 100%; }.link-item { width:100%; } .link-item a {padding: 5px 5px;} }</style><div style="width: 100%;"><h3 style="font-size: 21px; margin-bottom: 10px; padding: 5px 5px; background-color: #0056b3; color: #fff; text-align: center; border-radius: 5px;">Top Free Courses</h3></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/introduction-to-devops1">Devops Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/react-js-tutorial">React JS Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/data-analytics/free-courses">Data Analyst Free Courses</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/finance/free-courses">Finance Free Courses</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/jira-project-management">JIRA Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/html/free-courses">HTML Free Courses</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/video-editing-basics">Video Editing Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/ai/free-courses">AI Free Courses</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/intro-to-graphic-design-with-photoshop">Graphic Design Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/accounting/free-courses">Accounting Free Courses</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/become-full-stack-developer">Full Stack Developer Free Course</a></div><div class="link-item"><a href="https://www.mygreatlearning.com/cloud-computing/free-courses">Cloud Computing Free Courses</a></div><div class="view-more"><a href="https://www.mygreatlearning.com/academy">See all Free Online Certificate Courses</a></div></div> --> <div class="recommended"> <div class="section-title">Recommended for you</div> <div class="posts" data-id="articles"> <article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/sql-commands/"> <img width="1200" height="628" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%20628'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="SQL Commands" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1.jpg 1200w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-300x157.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-1024x536.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-768x402.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-150x79.jpg 150w" data-lazy-sizes="(max-width: 1200px) 100vw, 1200px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1.jpg" /><noscript><img width="1200" height="628" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="SQL Commands" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1.jpg 1200w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-300x157.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-1024x536.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-768x402.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/20135942/Blog-Featured-Image-1-150x79.jpg 150w" sizes="(max-width: 1200px) 100vw, 1200px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/sql-commands/"> <h3 class="title"> SQL Commands (DDL, DML, DCL, TCL, DQL): Types, Syntax, and Examples</h3> <div class="meta"> <span class="date">Updated on Apr 22, 2024</span> <span class="views">577</span> </div> </a> </div> </article><article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/polymorphism-in-java/"> <img width="1000" height="750" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201000%20750'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Polymorphism in Java" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327.jpg 1000w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-300x225.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-768x576.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-696x522.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-560x420.jpg 560w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-80x60.jpg 80w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-265x198.jpg 265w" data-lazy-sizes="(max-width: 1000px) 100vw, 1000px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327.jpg" /><noscript><img width="1000" height="750" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="Polymorphism in Java" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327.jpg 1000w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-300x225.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-768x576.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-696x522.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-560x420.jpg 560w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-80x60.jpg 80w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/03/02134413/shutterstock_1098956327-265x198.jpg 265w" sizes="(max-width: 1000px) 100vw, 1000px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/polymorphism-in-java/"> <h3 class="title"> Polymorphism in Java with Examples</h3> <div class="meta"> <span class="date">Updated on Apr 1, 2024</span> <span class="views">244091</span> </div> </a> </div> </article><article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/what-is-operating-system/"> <img width="1000" height="668" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201000%20668'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="what is operating system" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479.jpg 1000w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-300x200.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-768x513.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-696x465.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-629x420.jpg 629w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-150x100.jpg 150w" data-lazy-sizes="(max-width: 1000px) 100vw, 1000px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479.jpg" /><noscript><img width="1000" height="668" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="what is operating system" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479.jpg 1000w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-300x200.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-768x513.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-696x465.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-629x420.jpg 629w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/06/10161318/shutterstock_387653479-150x100.jpg 150w" sizes="(max-width: 1000px) 100vw, 1000px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/what-is-operating-system/"> <h3 class="title"> What is an Operating System (OS)?</h3> <div class="meta"> <span class="date">Updated on Apr 19, 2024</span> <span class="views">155503</span> </div> </a> </div> </article><article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/web-development-project-ideas/"> <img width="1254" height="836" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201254%20836'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="web development project ideas" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1.jpg 1254w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-300x200.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-1024x683.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-768x512.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-696x464.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-1068x712.jpg 1068w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-630x420.jpg 630w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-150x100.jpg 150w" data-lazy-sizes="(max-width: 1254px) 100vw, 1254px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1.jpg" /><noscript><img width="1254" height="836" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="web development project ideas" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1.jpg 1254w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-300x200.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-1024x683.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-768x512.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-696x464.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-1068x712.jpg 1068w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-630x420.jpg 630w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2022/04/14172452/iStock-1255967013-1-150x100.jpg 150w" sizes="(max-width: 1254px) 100vw, 1254px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/web-development-project-ideas/"> <h3 class="title"> Top 25 Web Development Projects for Beginners</h3> <div class="meta"> <span class="date">Updated on Apr 20, 2024</span> <span class="views">39683</span> </div> </a> </div> </article><article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/what-does-an-android-developer-do/"> <img width="1261" height="832" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201261%20832'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="WHAT DOES AN ANDROID DEVELOPER DO?" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613.jpg 1261w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-300x198.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-1024x676.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-768x507.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-696x459.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-1068x705.jpg 1068w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-637x420.jpg 637w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-150x99.jpg 150w" data-lazy-sizes="(max-width: 1261px) 100vw, 1261px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613.jpg" /><noscript><img width="1261" height="832" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="WHAT DOES AN ANDROID DEVELOPER DO?" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613.jpg 1261w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-300x198.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-1024x676.jpg 1024w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-768x507.jpg 768w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-696x459.jpg 696w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-1068x705.jpg 1068w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-637x420.jpg 637w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2021/07/21133653/iStock-458662613-150x99.jpg 150w" sizes="(max-width: 1261px) 100vw, 1261px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/what-does-an-android-developer-do/"> <h3 class="title"> What does an Android developer do?</h3> <div class="meta"> <span class="date">Updated on Jan 9, 2024</span> <span class="views">1955</span> </div> </a> </div> </article><article class="post"> <div class="inner-content"> <div class="thumb"> <a href="https://www.mygreatlearning.com/blog/coalesce-in-sql/"> <img width="725" height="482" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20725%20482'%3E%3C/svg%3E" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" data-lazy-srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844.jpg 725w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844-300x199.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844-150x100.jpg 150w" data-lazy-sizes="(max-width: 725px) 100vw, 725px" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844.jpg" /><noscript><img width="725" height="482" src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844.jpg" class="attachment-post-thumbnail size-post-thumbnail wp-post-image" alt="" decoding="async" srcset="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844.jpg 725w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844-300x199.jpg 300w, https://d1m75rqqgidzqn.cloudfront.net/wp-data/2023/11/08145001/iStock-1673063844-150x100.jpg 150w" sizes="(max-width: 725px) 100vw, 725px" /></noscript> </a> </div> <a class="content" href="https://www.mygreatlearning.com/blog/coalesce-in-sql/"> <h3 class="title"> Mastering the COALESCE Function in SQL</h3> <div class="meta"> <span class="date">Updated on Nov 8, 2023</span> <span class="views">124</span> </div> </a> </div> </article> </div> </div> <div class="comments-wrapper"> <div id="comments" class="comments-area comment-form-position-below "> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">Leave a Comment <small><a rel="nofollow" id="cancel-comment-reply-link" href="/blog/html-tutorial/#respond" style="display:none;">Cancel Reply</a></small></h3><form action="https://www.mygreatlearning.com/blog/wp-comments-post.php" method="post" id="ast-commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p><div class="ast-row comment-textarea"><fieldset class="comment-form-comment"><legend class ="comment-form-legend"></legend><div class="comment-form-textarea ast-grid-common-col"><label for="comment" class="screen-reader-text">Type here..</label><textarea id="comment" name="comment" placeholder="Type here.." cols="45" rows="8" aria-required="true"></textarea></div></fieldset></div><div class="ast-comment-formwrap ast-row"><p class="comment-form-author ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"><label for="author" class="screen-reader-text">Name*</label><input id="author" name="author" type="text" value="" placeholder="Name*" size="30" aria-required='true' /></p> <p class="comment-form-email ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"><label for="email" class="screen-reader-text">Email*</label><input id="email" name="email" type="text" value="" placeholder="Email*" size="30" aria-required='true' /></p> <p class="comment-form-url ast-grid-common-col ast-width-lg-33 ast-width-md-4 ast-float"><label for="url"><label for="url" class="screen-reader-text">Website</label><input id="url" name="url" type="text" value="" placeholder="Website" size="30" /></label></p></div> <p class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes" /> <label for="wp-comment-cookies-consent">Save my name, email, and website in this browser for the next time I comment.</label></p> <div class="g-recaptcha-wrap" style="padding:10px 0 10px 0"><div class="g-recaptcha" data-sitekey="6LdiCzUbAAAAAGNr1LzY2uPF1pfrs5K70KtoI0gI"></div></div><p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment »" /> <input type='hidden' name='comment_post_ID' value='16639' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p> <p class="comment-form-aios-antibot-keys"><input type="hidden" name="li4ih5im" value="62dqt7mlsgn2" ><input type="hidden" name="nneyyo3s" value="mr1aj3libl88" ></p></form> </div><!-- #respond --> </div><!-- #comments --> </div> </div> <div class="right-area"> <a href="https://www.mygreatlearning.com/academy"><img src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%200%200'%3E%3C/svg%3E" alt="Great Learning Free Online Courses" data-lazy-src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/01001122/Free-courses.webp"><noscript><img src="https://d1m75rqqgidzqn.cloudfront.net/wp-data/2024/04/01001122/Free-courses.webp" alt="Great Learning Free Online Courses"></noscript></a> <!--<ul class="toc"><h2 class="toc-title">Table of contents</h2><ul class="toc-links"><ul><li><a href='#html-tutorial-what-is-html' >HTML Tutorial - What is HTML?</a></li><li><a href='#applications-of-html' >Applications of HTML</a></li><li><a href='#features-of-html' >Features Of HTML</a></li><li><a href='#html-editor' >HTML Editor</a></li><li><a href='#html-skeleton' >HTML Skeleton</a></li><li><a href='#html-basic' >HTML Basic</a></li><li><a href='#html-comment' >HTML Comment</a></li><li><a href='#html-elements' >HTML Elements</a></li><li><a href='#what-is-html-elements-definition' >What is HTML Elements Definition</a></li><li><a href='#types-of-elements' >Types of Elements</a></li><li><a href='#html-attributes' >HTML Attributes</a></li><li><a href='#html-tags' >HTML Tags</a></li><li><a href='#meta-tags-in-html' >Meta Tags in HTML</a></li><li><a href='#html-forms' >HTML Forms</a></li><li><a href='#html-links' >HTML Links </a></li><li><a href='#html-image-links' >HTML Image Links</a></li><li><a href='#html-tables' >HTML Tables</a></li><li><a href='#left-align-headings' >Left-Align Headings</a></li><li><a href='#html-css' >HTML CSS </a></li><li><a href='#html-classes' >HTML Classes </a></li><li><a href='#html-marquees' >HTML Marquees </a></li><li><a href='#html-file-path' >HTML File Path </a></li><li><a href='#html-embed-multimedia' >HTML Embed Multimedia</a></li><li><a href='#html-quotations' >HTML Quotations </a></li><li><a href='#html-semantic-elements' >HTML Semantic Elements </a></li><li><a href='#html-frames' >HTML Frames </a></li><li><a href='#html-iframes' >HTML Iframes </a></li><li><a href='#html-entities' >HTML Entities </a></li><li><a href='#html-computer-code' >HTML Computer Code</a></li><li><a href='#html-vs-xhtml' >HTML vs XHTML</a></li><li><a href='#html-canvas' >HTML Canvas</a></li><li><a href='#html-svg' >HTML SVG</a></li><li><a href='#html-tutorial-faqs' >HTML Tutorial FAQs</a></li></ul></ul></ul>--> </div> </div> </div> </div> </div> <!-- ast-container --> </div><!-- #content --> <footer class="ast-custom-footer" itemscope="itemscope" itemtype="https://schema.org/WPFooter"> <div class="astra-advanced-hook-62646 "> <div class="site-container"> <div class="widgets-wrapper"> <div class="footer-widget-1"> <div id="nav_menu-3" class="widget inner-padding widget_nav_menu"><h3 class="widget-title">Free Courses</h3><nav class="menu-free-courses-footer-menu-container" aria-label="Free Courses"><ul id="menu-free-courses-footer-menu" class="menu"><li id="menu-item-83267" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83267"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/python-for-machine-learning?s=python" class="menu-link">Python for Machine Learning</a></li> <li id="menu-item-83268" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83268"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/data-science-foundations" class="menu-link">Data Science Foundations</a></li> <li id="menu-item-83270" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83270"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/deep-learning-with-python" class="menu-link">Deep Learning with Python</a></li> <li id="menu-item-83271" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83271"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/introduction-to-cyber-security" class="menu-link">Introduction to Cyber Security</a></li> <li id="menu-item-83273" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83273"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/introduction-to-digital-marketing" class="menu-link">Introduction to Digital Marketing</a></li> <li id="menu-item-83274" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83274"><a href="https://www.mygreatlearning.com/academy/learn-for-free/courses/java-programming" class="menu-link">Java Programming</a></li> <li id="menu-item-83390" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83390"><a href="https://www.mygreatlearning.com/academy/search" class="menu-link">View More →</a></li> </ul></nav></div><div id="nav_menu-4" class="widget inner-padding widget_nav_menu"><h3 class="widget-title">Blog Categories</h3><nav class="menu-browse-categories-container" aria-label="Blog Categories"><ul id="menu-browse-categories" class="menu"><li id="menu-item-83287" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83287"><a href="https://www.mygreatlearning.com/blog/data-science/" class="menu-link">Data Science</a></li> <li id="menu-item-83281" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83281"><a href="https://www.mygreatlearning.com/blog/artificial-intelligence/" class="menu-link">Artificial Intelligence</a></li> <li id="menu-item-83285" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83285"><a href="https://www.mygreatlearning.com/blog/career/" class="menu-link">Career</a></li> <li id="menu-item-83288" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83288"><a href="https://www.mygreatlearning.com/blog/cybersecurity/" class="menu-link">Cybersecurity</a></li> <li id="menu-item-83283" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83283"><a href="https://www.mygreatlearning.com/blog/software/" class="menu-link">IT/Software Development</a></li> <li id="menu-item-92901" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92901"><a href="https://www.mygreatlearning.com/study-abroad/courses" class="menu-link">Study Abroad</a></li> <li id="menu-item-92902" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92902"><a href="https://www.mygreatlearning.com/study-abroad/study-in-us" class="menu-link">Study In USA</a></li> </ul></nav></div> </div> <div class="footer-widget-2"> <div id="nav_menu-5" class="widget inner-padding widget_nav_menu"><h3 class="widget-title">Popular Courses</h3><nav class="menu-popular-courses-container" aria-label="Popular Courses"><ul id="menu-popular-courses" class="menu"><li id="menu-item-83292" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83292"><a href="https://www.mygreatlearning.com/pg-program-data-science-and-business-analytics-course" class="menu-link">PGP In Data Science and Business Analytics</a></li> <li id="menu-item-83293" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83293"><a href="https://www.mygreatlearning.com/pg-program-artificial-intelligence-course" class="menu-link">PGP In Artificial Intelligence And Machine Learning</a></li> <li id="menu-item-83294" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83294"><a href="https://www.mygreatlearning.com/pg-program-management-executive" class="menu-link">PGP In Management</a></li> <li id="menu-item-83295" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83295"><a href="https://www.mygreatlearning.com/pg-program-cloud-computing-course" class="menu-link">PGP In Cloud Computing</a></li> <li id="menu-item-83297" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83297"><a href="https://www.mygreatlearning.com/software-engineering/courses" class="menu-link">Software Engineering Course</a></li> <li id="menu-item-83298" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83298"><a href="https://www.mygreatlearning.com/pg-program-strategic-digital-marketing-course" class="menu-link">PGP In Digital Marketing</a></li> <li id="menu-item-83299" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83299"><a href="https://www.mygreatlearning.com/" class="menu-link">View More →</a></li> </ul></nav></div><div id="nav_menu-11" class="widget inner-padding widget_nav_menu"><h3 class="widget-title">Salary Blogs</h3><nav class="menu-salary-articles-container" aria-label="Salary Blogs"><ul id="menu-salary-articles" class="menu"><li id="menu-item-83330" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83330"><a href="https://www.mygreatlearning.com/blog/salary-calculator/" class="menu-link">Salary Calculator</a></li> <li id="menu-item-83331" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83331"><a href="https://www.mygreatlearning.com/blog/data-architect-salary-in-india-for-freshers-experienced/" class="menu-link">Data Architect Salary</a></li> <li id="menu-item-83332" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83332"><a href="https://www.mygreatlearning.com/blog/cloud-engineer-salary/" class="menu-link">Cloud Engineer Salary</a></li> <li id="menu-item-83341" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83341"><a href="https://www.mygreatlearning.com/blog/what-does-a-software-engineer-do/" class="menu-link">Software Engineer Salary</a></li> <li id="menu-item-83342" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83342"><a href="https://www.mygreatlearning.com/blog/product-manager-salary/" class="menu-link">Product Manager Salary</a></li> </ul></nav></div> </div> <div class="footer-widget-3"> <div id="nav_menu-7" class="widget inner-padding widget_nav_menu"><h3 class="widget-title">Interview Questions</h3><nav class="menu-interview-questions-container" aria-label="Interview Questions"><ul id="menu-interview-questions" class="menu"><li id="menu-item-83317" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83317"><a href="https://www.mygreatlearning.com/blog/java-interview-questions/" class="menu-link">Java Interview Questions</a></li> <li id="menu-item-83318" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83318"><a href="https://www.mygreatlearning.com/blog/python-interview-questions/" class="menu-link">Python Interview Questions</a></li> <li id="menu-item-83319" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83319"><a href="https://www.mygreatlearning.com/blog/sql-interview-questions/" class="menu-link">SQL Interview Questions</a></li> <li id="menu-item-83320" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83320"><a href="https://www.mygreatlearning.com/blog/selenium-interview-questions/" class="menu-link">Selenium Interview Questions</a></li> <li id="menu-item-83321" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83321"><a href="https://www.mygreatlearning.com/blog/machine-learning-interview-questions/" class="menu-link">Machine Learning Interview Questions</a></li> <li id="menu-item-83322" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83322"><a href="https://www.mygreatlearning.com/blog/nlp-interview-questions/" class="menu-link">NLP Interview Questions</a></li> <li id="menu-item-83323" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83323"><a href="https://www.mygreatlearning.com/blog/interview-questions/" class="menu-link">View More →</a></li> </ul></nav></div> </div> </div> <div class="info-wrapper"> <div class="left-block"> <div class="social-links"> <a href="https://www.facebook.com/GreatLearningOfficial/" target="_blank"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="#D9D9D9" d="M28 14a14 14 0 0 1-14 14A14 14 0 0 1 0 14a14 14 0 0 1 28 0z"/><path d="m17.745 15.094.499-3.167h-3.121V9.873c0-.866.436-1.712 1.834-1.712h1.418V5.464s-1.287-.214-2.518-.214c-2.57 0-4.25 1.517-4.25 4.263v2.413H8.75v3.167h2.857v7.657h3.516v-7.656h2.622Z" fill="#111"/></svg></a> <a href="https://twitter.com/Great_Learning" target="_blank"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14" cy="14" r="14" fill="#D9D9D9"/><path d="M20.256 11.146c.01.143.01.287.01.43 0 4.38-3.248 9.424-9.184 9.424a8.955 8.955 0 0 1-4.957-1.487c.26.03.51.041.78.041a6.361 6.361 0 0 0 4.007-1.415c-1.42-.03-2.608-.984-3.018-2.297.2.031.4.051.61.051.29 0 .58-.04.849-.112-1.48-.308-2.588-1.64-2.588-3.25v-.042c.43.246.929.4 1.459.42a3.333 3.333 0 0 1-1.44-2.758c0-.615.16-1.179.44-1.671a9.1 9.1 0 0 0 6.656 3.466 3.83 3.83 0 0 1-.08-.759c0-1.825 1.44-3.312 3.228-3.312.93 0 1.769.4 2.359 1.046a6.241 6.241 0 0 0 2.048-.8 3.29 3.29 0 0 1-1.419 1.825 6.342 6.342 0 0 0 1.859-.512 7.04 7.04 0 0 1-1.619 1.712Z" fill="#111"/></svg></a> <a href="https://www.linkedin.com/school/great-learning/" target="_blank"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14" cy="14" r="14" fill="#D9D9D9"/><path d="M10.134 21H7.23v-9.347h2.903V21ZM8.68 10.378C7.753 10.378 7 9.609 7 8.68a1.681 1.681 0 1 1 3.362 0c0 .928-.753 1.697-1.681 1.697ZM20.997 21H18.1v-4.55c0-1.084-.022-2.475-1.51-2.475-1.509 0-1.74 1.178-1.74 2.397V21h-2.9v-9.347h2.785v1.275h.04c.388-.734 1.334-1.51 2.747-1.51 2.937 0 3.477 1.935 3.477 4.448V21h-.003Z" fill="#111"/></svg></a> <a href="https://www.youtube.com/user/beaconelearning/" target="_blank"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14" cy="14" r="14" fill="#D9D9D9"/><path d="M22.403 10.608a2.106 2.106 0 0 0-1.47-1.503c-1.297-.355-6.495-.355-6.495-.355s-5.2 0-6.496.355a2.106 2.106 0 0 0-1.47 1.503c-.347 1.326-.347 4.091-.347 4.091s0 2.766.347 4.092a2.074 2.074 0 0 0 1.47 1.479c1.297.355 6.495.355 6.495.355s5.2 0 6.496-.355a2.074 2.074 0 0 0 1.47-1.479c.347-1.326.347-4.091.347-4.091s0-2.766-.347-4.092Zm-9.666 6.603v-5.023l4.345 2.512-4.345 2.51Z" fill="#000"/></svg></a> <a href="https://www.instagram.com/greatlearningofficial/" target="_blank"><svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="14" cy="14" r="14" fill="#D9D9D9"/><path d="M14.44 10.624a3.807 3.807 0 0 0-3.814 3.813 3.807 3.807 0 0 0 3.813 3.814 3.807 3.807 0 0 0 3.813-3.814 3.807 3.807 0 0 0-3.813-3.813Zm0 6.293a2.484 2.484 0 0 1-2.48-2.48 2.482 2.482 0 0 1 2.48-2.479 2.481 2.481 0 0 1 2.478 2.48 2.484 2.484 0 0 1-2.479 2.479Zm4.857-6.45c0 .495-.398.89-.889.89a.89.89 0 1 1 .89-.89Zm2.526.904c-.057-1.192-.329-2.248-1.201-3.117-.87-.87-1.925-1.142-3.117-1.202-1.227-.07-4.908-.07-6.135 0-1.188.057-2.244.329-3.116 1.199-.873.87-1.142 1.925-1.202 3.116-.07 1.228-.07 4.91 0 6.137.057 1.192.329 2.247 1.202 3.117.872.87 1.924 1.142 3.116 1.202 1.227.07 4.908.07 6.135 0 1.192-.057 2.247-.329 3.117-1.202.869-.87 1.141-1.925 1.2-3.117.07-1.228.07-4.905 0-6.133Zm-1.587 7.451a2.51 2.51 0 0 1-1.413 1.414c-.98.389-3.302.299-4.384.299-1.082 0-3.408.086-4.383-.299a2.51 2.51 0 0 1-1.414-1.414c-.388-.979-.299-3.302-.299-4.384 0-1.083-.086-3.41.299-4.385a2.51 2.51 0 0 1 1.414-1.414c.978-.388 3.301-.299 4.383-.299 1.082 0 3.408-.086 4.384.299a2.51 2.51 0 0 1 1.413 1.414c.389.979.3 3.302.3 4.384 0 1.083.089 3.41-.3 4.385Z" fill="#000"/></svg></a> </div> <div class="site-links"> <ul id="menu-quick-links" class="menu"><li id="menu-item-91560" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91560"><a href="https://www.mygreatlearning.com/about-us" class="menu-link">About Us</a></li> <li id="menu-item-91561" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91561"><a href="https://www.mygreatlearning.com/contactus" class="menu-link">Contact Us</a></li> <li id="menu-item-91562" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91562"><a href="https://www.mygreatlearning.com/privacy-policy" class="menu-link">Privacy Policy</a></li> <li id="menu-item-91563" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91563"><a href="https://www.mygreatlearning.com/terms" class="menu-link">Terms of Use</a></li> <li id="menu-item-91564" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91564"><a href="https://www.mygreatlearning.com/careers" class="menu-link">Great Learning Careers</a></li> </ul> </div> <p class="copyright">© 2013 - 2024 Great Learning Education Services Private Limited (Formerly known as Great Lakes E-Learning Services Private Limited).All rights reserved</p> </div> <div class="right-block"> <div class="apps"> <a class="android" href="https://play.google.com/store/apps/details?id=com.lms.greatlakes" target="_blank"> <svg width="32" height="34" viewBox="0 0 32 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.4 28.073h2.24v2.312c0 .7.27 1.373.75 1.868a2.52 2.52 0 0 0 1.81.774 2.522 2.522 0 0 0 1.81-.774c.48-.495.75-1.167.75-1.868v-2.312h4.48v2.312c0 .7.27 1.373.75 1.868a2.52 2.52 0 0 0 1.81.774 2.522 2.522 0 0 0 1.81-.774c.48-.495.75-1.167.75-1.868v-2.312h2.24V13.539H6.4v14.534ZM25.993.178a1.227 1.227 0 0 0-.64-.178 1.25 1.25 0 0 0-.639.177 1.303 1.303 0 0 0-.468.484l-1.92 3.445a9.428 9.428 0 0 0-6.32-2.45c-2.324 0-4.57.87-6.32 2.45L7.754.66c-.11-.2-.272-.367-.468-.484a1.25 1.25 0 0 0-1.28.002c-.296.179-.51.467-.596.802a1.36 1.36 0 0 0 .127 1.002l2.378 4.247A10.045 10.045 0 0 0 6.4 11.56h19.2a10.05 10.05 0 0 0-1.514-5.33l2.378-4.248c.169-.304.215-.664.126-1.002a1.316 1.316 0 0 0-.597-.802ZM12.32 8.918a.938.938 0 0 1-.533-.167.984.984 0 0 1-.354-.445 1.02 1.02 0 0 1 .208-1.08.932.932 0 0 1 1.046-.215.967.967 0 0 1 .431.366 1.014 1.014 0 0 1-.12 1.25.945.945 0 0 1-.678.291Zm7.36 0a.94.94 0 0 1-.534-.167.985.985 0 0 1-.353-.445A1.02 1.02 0 0 1 19 7.226a.932.932 0 0 1 1.046-.215.968.968 0 0 1 .431.366 1.015 1.015 0 0 1-.12 1.25.945.945 0 0 1-.678.291h.001Zm10.4 4.622c-.51 0-.998.208-1.358.58-.36.371-.562.875-.562 1.401v6.606c0 .526.202 1.03.562 1.402.36.372.849.58 1.358.58.51 0 .998-.208 1.358-.58.36-.372.562-.876.562-1.402v-6.606c0-.526-.202-1.03-.563-1.401a1.89 1.89 0 0 0-1.357-.58Zm-28.16 0c-.51 0-.998.208-1.358.58-.36.371-.562.875-.562 1.401v6.606c0 .526.202 1.03.562 1.402.36.372.849.58 1.358.58.51 0 .998-.208 1.358-.58.36-.372.562-.876.562-1.402v-6.606c0-.526-.202-1.03-.562-1.401a1.889 1.889 0 0 0-1.358-.58Z" fill="#fff"/></svg> <span>Get our android app</span> </a> <a class="ios" href="https://apps.apple.com/in/app/great-learning-olympus/id1016344161" target="_blank"> <svg width="27" height="34" viewBox="0 0 27 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 24.232c-.736 1.719-1.09 2.488-2.039 4.005-1.326 2.12-3.196 4.768-5.507 4.785-2.057.02-2.588-1.411-5.382-1.386-2.79.014-3.372 1.414-5.432 1.391-2.314-.022-4.083-2.406-5.409-4.524-3.709-5.937-4.1-12.898-1.809-16.6 1.622-2.625 4.187-4.168 6.596-4.168 2.455 0 3.997 1.416 6.025 1.416 1.97 0 3.167-1.419 6.006-1.419 2.146 0 4.413 1.229 6.036 3.349-5.305 3.057-4.443 11.02.915 13.15v.001Zm-9.107-18.87C18.926 3.97 19.71 2.002 19.425 0c-1.684.12-3.653 1.25-4.803 2.715-1.043 1.335-1.908 3.315-1.572 5.23 1.84.062 3.741-1.09 4.843-2.583Z" fill="#fff"/></svg> <span>Get our ios app</span> </a> </div> </div> </div> </div> </div> </footer> <div id="ast-mobile-popup-wrapper"> <div id="ast-mobile-popup" class="ast-mobile-popup-drawer content-align-flex-start ast-mobile-popup-full-width"> <div class="ast-mobile-popup-overlay"></div> <div class="ast-mobile-popup-inner"> <div class="ast-mobile-popup-header"> <button type="button" id="menu-toggle-close" class="menu-toggle-close" aria-label="Close menu" tabindex="0"> <span class="ast-svg-iconset"> <span class="ahfb-svg-iconset ast-inline-flex svg-baseline"><svg class='ast-mobile-svg ast-close-svg' fill='currentColor' version='1.1' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path d='M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z'></path></svg></span> </span> </button> </div> <div class="ast-mobile-popup-content"> <div class="ast-builder-menu-mobile ast-builder-menu ast-builder-menu-mobile-focus-item ast-builder-layout-element site-header-focus-item" data-section="section-header-mobile-menu"> <div class="ast-main-header-bar-alignment"><div class="main-header-bar-navigation"><nav class="site-navigation ast-flex-grow-1 navigation-accessibility site-header-focus-item" id="ast-mobile-site-navigation" aria-label="Site Navigation" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"><div class="main-navigation"><ul id="ast-hf-mobile-menu" class="main-header-menu ast-nav-menu ast-flex submenu-with-border astra-menu-animation-fade stack-on-mobile ast-mega-menu-enabled"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83158"><a href="https://www.mygreatlearning.com/academy" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Free Courses<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83159"><a href="https://www.mygreatlearning.com/software/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">IT & Software</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83160"><a href="https://www.mygreatlearning.com/interview-preparation/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Interview Preparation</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83161"><a href="https://www.mygreatlearning.com/data-science/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Data Science</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83162"><a href="https://www.mygreatlearning.com/ai/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Artificial Intelligence</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83163"><a href="https://www.mygreatlearning.com/machine-learning/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Machine Learning</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83164"><a href="https://www.mygreatlearning.com/digital-marketing/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Digital Marketing</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83165"><a href="https://www.mygreatlearning.com/management/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Management</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83166"><a href="https://www.mygreatlearning.com/cybersecurity/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Cyber Security</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83167"><a href="https://www.mygreatlearning.com/cloud-computing/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Cloud Computing</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83168"><a href="https://www.mygreatlearning.com/big-data/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Big Data</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83171"><a href="https://www.mygreatlearning.com/study-abroad/courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study Abroad<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92857"><a href="https://www.mygreatlearning.com/study-abroad/study-in-us" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study in USA</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-94436"><a href="https://www.mygreatlearning.com/study-abroad/study-in-germany" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study In Germany</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83169"><a href="#" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Career<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83170"><a href="https://www.mygreatlearning.com/academy/career-paths" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Career Paths</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83172"><a href="#" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Work with Us<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83173"><a href="https://www.mygreatlearning.com/blog/become-a-contributor/" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Write for Us</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83174"><a href="https://www.mygreatlearning.com/blog/become-a-video-instructor/" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Become an Instructor</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-93626"><a href="https://www.youtube.com/@greatlearning/podcasts" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Podcast<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93627"><a href="https://www.youtube.com/watch?v=mV5O5jG2f7w&t=32s" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">MS & MBA Options in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93628"><a href="https://www.youtube.com/watch?v=9BFbKR7uRA8" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Step by Step guide to the US Visa process for MS/MBA aspirants</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93629"><a href="https://www.youtube.com/watch?v=hJetsZuLMdg" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Navigating your Job Search after an MS/MBA in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93630"><a href="https://www.youtube.com/watch?v=ne_ad8Xh2ko" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Hybrid vs Full time MS/MBA programs in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93631"><a href="https://www.youtube.com/watch?v=eOh-apZBnUE&t=1421s" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">All about Master’s in Machine Learning from the University of Arizona</span></a></li></ul> </li></ul></div></nav></div></div> </div> </div> <div class="ast-desktop-popup-content"> <div class="ast-builder-menu-mobile ast-builder-menu ast-builder-menu-mobile-focus-item ast-builder-layout-element site-header-focus-item" data-section="section-header-mobile-menu"> <div class="ast-main-header-bar-alignment"><div class="main-header-bar-navigation"><nav class="site-navigation ast-flex-grow-1 navigation-accessibility site-header-focus-item" id="ast-desktop-site-navigation" aria-label="Site Navigation" itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"><div class="main-navigation"><ul id="ast-desktop-toggle-menu" class="main-header-menu ast-nav-menu ast-flex submenu-with-border astra-menu-animation-fade stack-on-mobile ast-mega-menu-enabled"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83158"><a href="https://www.mygreatlearning.com/academy" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Free Courses<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83159"><a href="https://www.mygreatlearning.com/software/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">IT & Software</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83160"><a href="https://www.mygreatlearning.com/interview-preparation/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Interview Preparation</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83161"><a href="https://www.mygreatlearning.com/data-science/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Data Science</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83162"><a href="https://www.mygreatlearning.com/ai/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Artificial Intelligence</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83163"><a href="https://www.mygreatlearning.com/machine-learning/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Machine Learning</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83164"><a href="https://www.mygreatlearning.com/digital-marketing/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Digital Marketing</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83165"><a href="https://www.mygreatlearning.com/management/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Management</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83166"><a href="https://www.mygreatlearning.com/cybersecurity/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Cyber Security</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83167"><a href="https://www.mygreatlearning.com/cloud-computing/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Cloud Computing</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83168"><a href="https://www.mygreatlearning.com/big-data/free-courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Big Data</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83171"><a href="https://www.mygreatlearning.com/study-abroad/courses" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study Abroad<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-92857"><a href="https://www.mygreatlearning.com/study-abroad/study-in-us" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study in USA</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-94436"><a href="https://www.mygreatlearning.com/study-abroad/study-in-germany" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Study In Germany</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83169"><a href="#" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Career<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83170"><a href="https://www.mygreatlearning.com/academy/career-paths" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Career Paths</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-83172"><a href="#" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Work with Us<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83173"><a href="https://www.mygreatlearning.com/blog/become-a-contributor/" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Write for Us</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-83174"><a href="https://www.mygreatlearning.com/blog/become-a-video-instructor/" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Become an Instructor</span></a></li></ul> </li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-93626"><a href="https://www.youtube.com/@greatlearning/podcasts" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Podcast<span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ></span></span><span role="application" class="dropdown-menu-toggle ast-header-navigation-arrow" tabindex="0" aria-expanded="false" aria-label="Menu Toggle" ><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></span></a><button class="ast-menu-toggle" aria-expanded="false"><span class="screen-reader-text">Menu Toggle</span><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span></button> <ul class="sub-menu"> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93627"><a href="https://www.youtube.com/watch?v=mV5O5jG2f7w&t=32s" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">MS & MBA Options in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93628"><a href="https://www.youtube.com/watch?v=9BFbKR7uRA8" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Step by Step guide to the US Visa process for MS/MBA aspirants</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93629"><a href="https://www.youtube.com/watch?v=hJetsZuLMdg" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Navigating your Job Search after an MS/MBA in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93630"><a href="https://www.youtube.com/watch?v=ne_ad8Xh2ko" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">Hybrid vs Full time MS/MBA programs in the US</span></a></li> <li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-93631"><a href="https://www.youtube.com/watch?v=eOh-apZBnUE&t=1421s" class="menu-link"><span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span><span class="menu-text">All about Master’s in Machine Learning from the University of Arizona</span></a></li></ul> </li></ul></div></nav></div></div> </div> </div> </div> </div> </div> </div><!-- #page --> <script type="rocketlazyloadscript"> </script> <script type="rocketlazyloadscript"> (function(){ // handle blog layout var sidebarEle = document.querySelector(".td-main-sidebar .td-ss-main-sidebar"); if(sidebarEle && sidebarEle.innerText.trim().length <= 1) { // sidebar contains two elements for clearfix //change the layout var mainContent = document.querySelector(".td-main-content"); console.log('sidebar removed') if(mainContent) { mainContent.style.width = "100%" var breadcrumbEle = document.querySelector(".td-crumb-container"); if(breadcrumbEle) { breadcrumbEle.style.padding = "24px 0px 8px 0px"; } } } // function to remove empty side bars (aside tags) var sideBarAsides = document.querySelectorAll('.td-ss-main-sidebar .widget_block'); sideBarAsides.forEach(function(item) { var text = item.innerText.length console.log('empty sidebar aside removed') if(!text) { item.remove() } }) })(); </script> <div id="ast-scroll-top" tabindex="0" class="ast-scroll-top-icon ast-scroll-to-top-right" data-on-devices="both"> <span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"> <path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/> </svg></span> <span class="screen-reader-text">Scroll to Top</span> </div> <script type="rocketlazyloadscript" data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shCore.js?ver=3.0.9b" id="syntaxhighlighter-core-js"></script> <script type="rocketlazyloadscript" data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/scripts/shBrushPlain.js?ver=3.0.9b" id="syntaxhighlighter-brush-plain-js"></script> <script type="rocketlazyloadscript" data-rocket-type='text/javascript'> (function(){ var corecss = document.createElement('link'); var themecss = document.createElement('link'); var corecssurl = "https://www.mygreatlearning.com/blog/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shCore.css?ver=3.0.9b"; if ( corecss.setAttribute ) { corecss.setAttribute( "rel", "stylesheet" ); corecss.setAttribute( "type", "text/css" ); corecss.setAttribute( "href", corecssurl ); } else { corecss.rel = "stylesheet"; corecss.href = corecssurl; } document.head.appendChild( corecss ); var themecssurl = "https://www.mygreatlearning.com/blog/wp-content/plugins/syntaxhighlighter/syntaxhighlighter3/styles/shThemeDefault.css?ver=3.0.9b"; if ( themecss.setAttribute ) { themecss.setAttribute( "rel", "stylesheet" ); themecss.setAttribute( "type", "text/css" ); themecss.setAttribute( "href", themecssurl ); } else { themecss.rel = "stylesheet"; themecss.href = themecssurl; } document.head.appendChild( themecss ); })(); SyntaxHighlighter.config.strings.expandSource = '+ expand source'; SyntaxHighlighter.config.strings.help = '?'; SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n'; SyntaxHighlighter.config.strings.noBrush = 'Can\'t find brush for: '; SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush wasn\'t configured for html-script option: '; SyntaxHighlighter.defaults['pad-line-numbers'] = false; SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); // Infinite scroll support if ( typeof( jQuery ) !== 'undefined' ) { jQuery( function( $ ) { $( document.body ).on( 'post-load', function() { SyntaxHighlighter.highlight(); } ); } ); } </script> <link rel='stylesheet' id='astra-addon-megamenu-dynamic-css' href='https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/plugins/astra-addon/addons/nav-menu/assets/css/minified/magamenu-frontend.min.css?ver=4.6.4' media='all' /> <style id='astra-addon-megamenu-dynamic-inline-css'> .ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83175 .astra-mm-icon-label.icon-item-83175, .ast-header-break-point .menu-item-83175 .astra-mm-icon-label.icon-item-83175{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83175 .astra-mm-icon-label.icon-item-83175 svg, .ast-header-break-point .menu-item-83175 .astra-mm-icon-label.icon-item-83175 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83176 .astra-mm-icon-label.icon-item-83176, .ast-header-break-point .menu-item-83176 .astra-mm-icon-label.icon-item-83176{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83176 .astra-mm-icon-label.icon-item-83176 svg, .ast-header-break-point .menu-item-83176 .astra-mm-icon-label.icon-item-83176 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89440 .astra-mm-icon-label.icon-item-89440, .ast-header-break-point .menu-item-89440 .astra-mm-icon-label.icon-item-89440{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89440 .astra-mm-icon-label.icon-item-89440 svg, .ast-header-break-point .menu-item-89440 .astra-mm-icon-label.icon-item-89440 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89441 .astra-mm-icon-label.icon-item-89441, .ast-header-break-point .menu-item-89441 .astra-mm-icon-label.icon-item-89441{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89441 .astra-mm-icon-label.icon-item-89441 svg, .ast-header-break-point .menu-item-89441 .astra-mm-icon-label.icon-item-89441 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89442 .astra-mm-icon-label.icon-item-89442, .ast-header-break-point .menu-item-89442 .astra-mm-icon-label.icon-item-89442{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89442 .astra-mm-icon-label.icon-item-89442 svg, .ast-header-break-point .menu-item-89442 .astra-mm-icon-label.icon-item-89442 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89443 .astra-mm-icon-label.icon-item-89443, .ast-header-break-point .menu-item-89443 .astra-mm-icon-label.icon-item-89443{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89443 .astra-mm-icon-label.icon-item-89443 svg, .ast-header-break-point .menu-item-89443 .astra-mm-icon-label.icon-item-89443 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89445 .astra-mm-icon-label.icon-item-89445, .ast-header-break-point .menu-item-89445 .astra-mm-icon-label.icon-item-89445{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89445 .astra-mm-icon-label.icon-item-89445 svg, .ast-header-break-point .menu-item-89445 .astra-mm-icon-label.icon-item-89445 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89453 .astra-mm-icon-label.icon-item-89453, .ast-header-break-point .menu-item-89453 .astra-mm-icon-label.icon-item-89453{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89453 .astra-mm-icon-label.icon-item-89453 svg, .ast-header-break-point .menu-item-89453 .astra-mm-icon-label.icon-item-89453 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89450 .astra-mm-icon-label.icon-item-89450, .ast-header-break-point .menu-item-89450 .astra-mm-icon-label.icon-item-89450{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89450 .astra-mm-icon-label.icon-item-89450 svg, .ast-header-break-point .menu-item-89450 .astra-mm-icon-label.icon-item-89450 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89446 .astra-mm-icon-label.icon-item-89446, .ast-header-break-point .menu-item-89446 .astra-mm-icon-label.icon-item-89446{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89446 .astra-mm-icon-label.icon-item-89446 svg, .ast-header-break-point .menu-item-89446 .astra-mm-icon-label.icon-item-89446 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89449 .astra-mm-icon-label.icon-item-89449, .ast-header-break-point .menu-item-89449 .astra-mm-icon-label.icon-item-89449{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89449 .astra-mm-icon-label.icon-item-89449 svg, .ast-header-break-point .menu-item-89449 .astra-mm-icon-label.icon-item-89449 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89456 .astra-mm-icon-label.icon-item-89456, .ast-header-break-point .menu-item-89456 .astra-mm-icon-label.icon-item-89456{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89456 .astra-mm-icon-label.icon-item-89456 svg, .ast-header-break-point .menu-item-89456 .astra-mm-icon-label.icon-item-89456 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89457 .astra-mm-icon-label.icon-item-89457, .ast-header-break-point .menu-item-89457 .astra-mm-icon-label.icon-item-89457{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89457 .astra-mm-icon-label.icon-item-89457 svg, .ast-header-break-point .menu-item-89457 .astra-mm-icon-label.icon-item-89457 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89458 .astra-mm-icon-label.icon-item-89458, .ast-header-break-point .menu-item-89458 .astra-mm-icon-label.icon-item-89458{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89458 .astra-mm-icon-label.icon-item-89458 svg, .ast-header-break-point .menu-item-89458 .astra-mm-icon-label.icon-item-89458 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89459 .astra-mm-icon-label.icon-item-89459, .ast-header-break-point .menu-item-89459 .astra-mm-icon-label.icon-item-89459{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89459 .astra-mm-icon-label.icon-item-89459 svg, .ast-header-break-point .menu-item-89459 .astra-mm-icon-label.icon-item-89459 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89460 .astra-mm-icon-label.icon-item-89460, .ast-header-break-point .menu-item-89460 .astra-mm-icon-label.icon-item-89460{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89460 .astra-mm-icon-label.icon-item-89460 svg, .ast-header-break-point .menu-item-89460 .astra-mm-icon-label.icon-item-89460 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89461 .astra-mm-icon-label.icon-item-89461, .ast-header-break-point .menu-item-89461 .astra-mm-icon-label.icon-item-89461{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89461 .astra-mm-icon-label.icon-item-89461 svg, .ast-header-break-point .menu-item-89461 .astra-mm-icon-label.icon-item-89461 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89462 .astra-mm-icon-label.icon-item-89462, .ast-header-break-point .menu-item-89462 .astra-mm-icon-label.icon-item-89462{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89462 .astra-mm-icon-label.icon-item-89462 svg, .ast-header-break-point .menu-item-89462 .astra-mm-icon-label.icon-item-89462 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83189 .astra-mm-icon-label.icon-item-83189, .ast-header-break-point .menu-item-83189 .astra-mm-icon-label.icon-item-83189{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83189 .astra-mm-icon-label.icon-item-83189 svg, .ast-header-break-point .menu-item-83189 .astra-mm-icon-label.icon-item-83189 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83190 .astra-mm-icon-label.icon-item-83190, .ast-header-break-point .menu-item-83190 .astra-mm-icon-label.icon-item-83190{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83190 .astra-mm-icon-label.icon-item-83190 svg, .ast-header-break-point .menu-item-83190 .astra-mm-icon-label.icon-item-83190 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89464 .astra-mm-icon-label.icon-item-89464, .ast-header-break-point .menu-item-89464 .astra-mm-icon-label.icon-item-89464{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89464 .astra-mm-icon-label.icon-item-89464 svg, .ast-header-break-point .menu-item-89464 .astra-mm-icon-label.icon-item-89464 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89465 .astra-mm-icon-label.icon-item-89465, .ast-header-break-point .menu-item-89465 .astra-mm-icon-label.icon-item-89465{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89465 .astra-mm-icon-label.icon-item-89465 svg, .ast-header-break-point .menu-item-89465 .astra-mm-icon-label.icon-item-89465 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89466 .astra-mm-icon-label.icon-item-89466, .ast-header-break-point .menu-item-89466 .astra-mm-icon-label.icon-item-89466{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89466 .astra-mm-icon-label.icon-item-89466 svg, .ast-header-break-point .menu-item-89466 .astra-mm-icon-label.icon-item-89466 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89467 .astra-mm-icon-label.icon-item-89467, .ast-header-break-point .menu-item-89467 .astra-mm-icon-label.icon-item-89467{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89467 .astra-mm-icon-label.icon-item-89467 svg, .ast-header-break-point .menu-item-89467 .astra-mm-icon-label.icon-item-89467 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89468 .astra-mm-icon-label.icon-item-89468, .ast-header-break-point .menu-item-89468 .astra-mm-icon-label.icon-item-89468{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89468 .astra-mm-icon-label.icon-item-89468 svg, .ast-header-break-point .menu-item-89468 .astra-mm-icon-label.icon-item-89468 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89469 .astra-mm-icon-label.icon-item-89469, .ast-header-break-point .menu-item-89469 .astra-mm-icon-label.icon-item-89469{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89469 .astra-mm-icon-label.icon-item-89469 svg, .ast-header-break-point .menu-item-89469 .astra-mm-icon-label.icon-item-89469 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89472 .astra-mm-icon-label.icon-item-89472, .ast-header-break-point .menu-item-89472 .astra-mm-icon-label.icon-item-89472{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89472 .astra-mm-icon-label.icon-item-89472 svg, .ast-header-break-point .menu-item-89472 .astra-mm-icon-label.icon-item-89472 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89470 .astra-mm-icon-label.icon-item-89470, .ast-header-break-point .menu-item-89470 .astra-mm-icon-label.icon-item-89470{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89470 .astra-mm-icon-label.icon-item-89470 svg, .ast-header-break-point .menu-item-89470 .astra-mm-icon-label.icon-item-89470 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83205 .astra-mm-icon-label.icon-item-83205, .ast-header-break-point .menu-item-83205 .astra-mm-icon-label.icon-item-83205{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83205 .astra-mm-icon-label.icon-item-83205 svg, .ast-header-break-point .menu-item-83205 .astra-mm-icon-label.icon-item-83205 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89471 .astra-mm-icon-label.icon-item-89471, .ast-header-break-point .menu-item-89471 .astra-mm-icon-label.icon-item-89471{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89471 .astra-mm-icon-label.icon-item-89471 svg, .ast-header-break-point .menu-item-89471 .astra-mm-icon-label.icon-item-89471 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89476 .astra-mm-icon-label.icon-item-89476, .ast-header-break-point .menu-item-89476 .astra-mm-icon-label.icon-item-89476{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89476 .astra-mm-icon-label.icon-item-89476 svg, .ast-header-break-point .menu-item-89476 .astra-mm-icon-label.icon-item-89476 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89477 .astra-mm-icon-label.icon-item-89477, .ast-header-break-point .menu-item-89477 .astra-mm-icon-label.icon-item-89477{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89477 .astra-mm-icon-label.icon-item-89477 svg, .ast-header-break-point .menu-item-89477 .astra-mm-icon-label.icon-item-89477 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89478 .astra-mm-icon-label.icon-item-89478, .ast-header-break-point .menu-item-89478 .astra-mm-icon-label.icon-item-89478{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89478 .astra-mm-icon-label.icon-item-89478 svg, .ast-header-break-point .menu-item-89478 .astra-mm-icon-label.icon-item-89478 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89480 .astra-mm-icon-label.icon-item-89480, .ast-header-break-point .menu-item-89480 .astra-mm-icon-label.icon-item-89480{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89480 .astra-mm-icon-label.icon-item-89480 svg, .ast-header-break-point .menu-item-89480 .astra-mm-icon-label.icon-item-89480 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89621 .astra-mm-icon-label.icon-item-89621, .ast-header-break-point .menu-item-89621 .astra-mm-icon-label.icon-item-89621{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89621 .astra-mm-icon-label.icon-item-89621 svg, .ast-header-break-point .menu-item-89621 .astra-mm-icon-label.icon-item-89621 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89622 .astra-mm-icon-label.icon-item-89622, .ast-header-break-point .menu-item-89622 .astra-mm-icon-label.icon-item-89622{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89622 .astra-mm-icon-label.icon-item-89622 svg, .ast-header-break-point .menu-item-89622 .astra-mm-icon-label.icon-item-89622 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83211 .astra-mm-icon-label.icon-item-83211, .ast-header-break-point .menu-item-83211 .astra-mm-icon-label.icon-item-83211{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83211 .astra-mm-icon-label.icon-item-83211 svg, .ast-header-break-point .menu-item-83211 .astra-mm-icon-label.icon-item-83211 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83212 .astra-mm-icon-label.icon-item-83212, .ast-header-break-point .menu-item-83212 .astra-mm-icon-label.icon-item-83212{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83212 .astra-mm-icon-label.icon-item-83212 svg, .ast-header-break-point .menu-item-83212 .astra-mm-icon-label.icon-item-83212 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89485 .astra-mm-icon-label.icon-item-89485, .ast-header-break-point .menu-item-89485 .astra-mm-icon-label.icon-item-89485{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89485 .astra-mm-icon-label.icon-item-89485 svg, .ast-header-break-point .menu-item-89485 .astra-mm-icon-label.icon-item-89485 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89486 .astra-mm-icon-label.icon-item-89486, .ast-header-break-point .menu-item-89486 .astra-mm-icon-label.icon-item-89486{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89486 .astra-mm-icon-label.icon-item-89486 svg, .ast-header-break-point .menu-item-89486 .astra-mm-icon-label.icon-item-89486 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89487 .astra-mm-icon-label.icon-item-89487, .ast-header-break-point .menu-item-89487 .astra-mm-icon-label.icon-item-89487{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89487 .astra-mm-icon-label.icon-item-89487 svg, .ast-header-break-point .menu-item-89487 .astra-mm-icon-label.icon-item-89487 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89488 .astra-mm-icon-label.icon-item-89488, .ast-header-break-point .menu-item-89488 .astra-mm-icon-label.icon-item-89488{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89488 .astra-mm-icon-label.icon-item-89488 svg, .ast-header-break-point .menu-item-89488 .astra-mm-icon-label.icon-item-89488 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89489 .astra-mm-icon-label.icon-item-89489, .ast-header-break-point .menu-item-89489 .astra-mm-icon-label.icon-item-89489{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89489 .astra-mm-icon-label.icon-item-89489 svg, .ast-header-break-point .menu-item-89489 .astra-mm-icon-label.icon-item-89489 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89490 .astra-mm-icon-label.icon-item-89490, .ast-header-break-point .menu-item-89490 .astra-mm-icon-label.icon-item-89490{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89490 .astra-mm-icon-label.icon-item-89490 svg, .ast-header-break-point .menu-item-89490 .astra-mm-icon-label.icon-item-89490 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83214 .astra-mm-icon-label.icon-item-83214, .ast-header-break-point .menu-item-83214 .astra-mm-icon-label.icon-item-83214{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83214 .astra-mm-icon-label.icon-item-83214 svg, .ast-header-break-point .menu-item-83214 .astra-mm-icon-label.icon-item-83214 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89491 .astra-mm-icon-label.icon-item-89491, .ast-header-break-point .menu-item-89491 .astra-mm-icon-label.icon-item-89491{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89491 .astra-mm-icon-label.icon-item-89491 svg, .ast-header-break-point .menu-item-89491 .astra-mm-icon-label.icon-item-89491 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83196 .astra-mm-icon-label.icon-item-83196, .ast-header-break-point .menu-item-83196 .astra-mm-icon-label.icon-item-83196{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83196 .astra-mm-icon-label.icon-item-83196 svg, .ast-header-break-point .menu-item-83196 .astra-mm-icon-label.icon-item-83196 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83197 .astra-mm-icon-label.icon-item-83197, .ast-header-break-point .menu-item-83197 .astra-mm-icon-label.icon-item-83197{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83197 .astra-mm-icon-label.icon-item-83197 svg, .ast-header-break-point .menu-item-83197 .astra-mm-icon-label.icon-item-83197 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83198 .astra-mm-icon-label.icon-item-83198, .ast-header-break-point .menu-item-83198 .astra-mm-icon-label.icon-item-83198{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83198 .astra-mm-icon-label.icon-item-83198 svg, .ast-header-break-point .menu-item-83198 .astra-mm-icon-label.icon-item-83198 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83203 .astra-mm-icon-label.icon-item-83203, .ast-header-break-point .menu-item-83203 .astra-mm-icon-label.icon-item-83203{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83203 .astra-mm-icon-label.icon-item-83203 svg, .ast-header-break-point .menu-item-83203 .astra-mm-icon-label.icon-item-83203 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89617 .astra-mm-icon-label.icon-item-89617, .ast-header-break-point .menu-item-89617 .astra-mm-icon-label.icon-item-89617{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89617 .astra-mm-icon-label.icon-item-89617 svg, .ast-header-break-point .menu-item-89617 .astra-mm-icon-label.icon-item-89617 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89614 .astra-mm-icon-label.icon-item-89614, .ast-header-break-point .menu-item-89614 .astra-mm-icon-label.icon-item-89614{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89614 .astra-mm-icon-label.icon-item-89614 svg, .ast-header-break-point .menu-item-89614 .astra-mm-icon-label.icon-item-89614 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89615 .astra-mm-icon-label.icon-item-89615, .ast-header-break-point .menu-item-89615 .astra-mm-icon-label.icon-item-89615{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89615 .astra-mm-icon-label.icon-item-89615 svg, .ast-header-break-point .menu-item-89615 .astra-mm-icon-label.icon-item-89615 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89616 .astra-mm-icon-label.icon-item-89616, .ast-header-break-point .menu-item-89616 .astra-mm-icon-label.icon-item-89616{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89616 .astra-mm-icon-label.icon-item-89616 svg, .ast-header-break-point .menu-item-89616 .astra-mm-icon-label.icon-item-89616 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83204 .astra-mm-icon-label.icon-item-83204, .ast-header-break-point .menu-item-83204 .astra-mm-icon-label.icon-item-83204{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83204 .astra-mm-icon-label.icon-item-83204 svg, .ast-header-break-point .menu-item-83204 .astra-mm-icon-label.icon-item-83204 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83485 .astra-mm-icon-label.icon-item-83485, .ast-header-break-point .menu-item-83485 .astra-mm-icon-label.icon-item-83485{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83485 .astra-mm-icon-label.icon-item-83485 svg, .ast-header-break-point .menu-item-83485 .astra-mm-icon-label.icon-item-83485 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83486 .astra-mm-icon-label.icon-item-83486, .ast-header-break-point .menu-item-83486 .astra-mm-icon-label.icon-item-83486{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83486 .astra-mm-icon-label.icon-item-83486 svg, .ast-header-break-point .menu-item-83486 .astra-mm-icon-label.icon-item-83486 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83488 .astra-mm-icon-label.icon-item-83488, .ast-header-break-point .menu-item-83488 .astra-mm-icon-label.icon-item-83488{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83488 .astra-mm-icon-label.icon-item-83488 svg, .ast-header-break-point .menu-item-83488 .astra-mm-icon-label.icon-item-83488 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83487 .astra-mm-icon-label.icon-item-83487, .ast-header-break-point .menu-item-83487 .astra-mm-icon-label.icon-item-83487{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83487 .astra-mm-icon-label.icon-item-83487 svg, .ast-header-break-point .menu-item-83487 .astra-mm-icon-label.icon-item-83487 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89610 .astra-mm-icon-label.icon-item-89610, .ast-header-break-point .menu-item-89610 .astra-mm-icon-label.icon-item-89610{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89610 .astra-mm-icon-label.icon-item-89610 svg, .ast-header-break-point .menu-item-89610 .astra-mm-icon-label.icon-item-89610 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89611 .astra-mm-icon-label.icon-item-89611, .ast-header-break-point .menu-item-89611 .astra-mm-icon-label.icon-item-89611{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89611 .astra-mm-icon-label.icon-item-89611 svg, .ast-header-break-point .menu-item-89611 .astra-mm-icon-label.icon-item-89611 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83207 .astra-mm-icon-label.icon-item-83207, .ast-header-break-point .menu-item-83207 .astra-mm-icon-label.icon-item-83207{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83207 .astra-mm-icon-label.icon-item-83207 svg, .ast-header-break-point .menu-item-83207 .astra-mm-icon-label.icon-item-83207 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83208 .astra-mm-icon-label.icon-item-83208, .ast-header-break-point .menu-item-83208 .astra-mm-icon-label.icon-item-83208{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83208 .astra-mm-icon-label.icon-item-83208 svg, .ast-header-break-point .menu-item-83208 .astra-mm-icon-label.icon-item-83208 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83489 .astra-mm-icon-label.icon-item-83489, .ast-header-break-point .menu-item-83489 .astra-mm-icon-label.icon-item-83489{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83489 .astra-mm-icon-label.icon-item-83489 svg, .ast-header-break-point .menu-item-83489 .astra-mm-icon-label.icon-item-83489 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83210 .astra-mm-icon-label.icon-item-83210, .ast-header-break-point .menu-item-83210 .astra-mm-icon-label.icon-item-83210{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83210 .astra-mm-icon-label.icon-item-83210 svg, .ast-header-break-point .menu-item-83210 .astra-mm-icon-label.icon-item-83210 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83215 .astra-mm-icon-label.icon-item-83215, .ast-header-break-point .menu-item-83215 .astra-mm-icon-label.icon-item-83215{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83215 .astra-mm-icon-label.icon-item-83215 svg, .ast-header-break-point .menu-item-83215 .astra-mm-icon-label.icon-item-83215 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83216 .astra-mm-icon-label.icon-item-83216, .ast-header-break-point .menu-item-83216 .astra-mm-icon-label.icon-item-83216{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83216 .astra-mm-icon-label.icon-item-83216 svg, .ast-header-break-point .menu-item-83216 .astra-mm-icon-label.icon-item-83216 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89618 .astra-mm-icon-label.icon-item-89618, .ast-header-break-point .menu-item-89618 .astra-mm-icon-label.icon-item-89618{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89618 .astra-mm-icon-label.icon-item-89618 svg, .ast-header-break-point .menu-item-89618 .astra-mm-icon-label.icon-item-89618 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89619 .astra-mm-icon-label.icon-item-89619, .ast-header-break-point .menu-item-89619 .astra-mm-icon-label.icon-item-89619{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89619 .astra-mm-icon-label.icon-item-89619 svg, .ast-header-break-point .menu-item-89619 .astra-mm-icon-label.icon-item-89619 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83218 .astra-mm-icon-label.icon-item-83218, .ast-header-break-point .menu-item-83218 .astra-mm-icon-label.icon-item-83218{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83218 .astra-mm-icon-label.icon-item-83218 svg, .ast-header-break-point .menu-item-83218 .astra-mm-icon-label.icon-item-83218 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83498 .astra-mm-icon-label.icon-item-83498, .ast-header-break-point .menu-item-83498 .astra-mm-icon-label.icon-item-83498{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83498 .astra-mm-icon-label.icon-item-83498 svg, .ast-header-break-point .menu-item-83498 .astra-mm-icon-label.icon-item-83498 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83219 .astra-mm-icon-label.icon-item-83219, .ast-header-break-point .menu-item-83219 .astra-mm-icon-label.icon-item-83219{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83219 .astra-mm-icon-label.icon-item-83219 svg, .ast-header-break-point .menu-item-83219 .astra-mm-icon-label.icon-item-83219 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-84670 .astra-mm-icon-label.icon-item-84670, .ast-header-break-point .menu-item-84670 .astra-mm-icon-label.icon-item-84670{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-84670 .astra-mm-icon-label.icon-item-84670 svg, .ast-header-break-point .menu-item-84670 .astra-mm-icon-label.icon-item-84670 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83220 .astra-mm-icon-label.icon-item-83220, .ast-header-break-point .menu-item-83220 .astra-mm-icon-label.icon-item-83220{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83220 .astra-mm-icon-label.icon-item-83220 svg, .ast-header-break-point .menu-item-83220 .astra-mm-icon-label.icon-item-83220 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83221 .astra-mm-icon-label.icon-item-83221, .ast-header-break-point .menu-item-83221 .astra-mm-icon-label.icon-item-83221{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83221 .astra-mm-icon-label.icon-item-83221 svg, .ast-header-break-point .menu-item-83221 .astra-mm-icon-label.icon-item-83221 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-84671 .astra-mm-icon-label.icon-item-84671, .ast-header-break-point .menu-item-84671 .astra-mm-icon-label.icon-item-84671{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-84671 .astra-mm-icon-label.icon-item-84671 svg, .ast-header-break-point .menu-item-84671 .astra-mm-icon-label.icon-item-84671 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83222 .astra-mm-icon-label.icon-item-83222, .ast-header-break-point .menu-item-83222 .astra-mm-icon-label.icon-item-83222{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83222 .astra-mm-icon-label.icon-item-83222 svg, .ast-header-break-point .menu-item-83222 .astra-mm-icon-label.icon-item-83222 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-84672 .astra-mm-icon-label.icon-item-84672, .ast-header-break-point .menu-item-84672 .astra-mm-icon-label.icon-item-84672{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-84672 .astra-mm-icon-label.icon-item-84672 svg, .ast-header-break-point .menu-item-84672 .astra-mm-icon-label.icon-item-84672 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83503 .astra-mm-icon-label.icon-item-83503, .ast-header-break-point .menu-item-83503 .astra-mm-icon-label.icon-item-83503{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83503 .astra-mm-icon-label.icon-item-83503 svg, .ast-header-break-point .menu-item-83503 .astra-mm-icon-label.icon-item-83503 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89678 .astra-mm-icon-label.icon-item-89678, .ast-header-break-point .menu-item-89678 .astra-mm-icon-label.icon-item-89678{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89678 .astra-mm-icon-label.icon-item-89678 svg, .ast-header-break-point .menu-item-89678 .astra-mm-icon-label.icon-item-89678 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92853 .astra-mm-icon-label.icon-item-92853, .ast-header-break-point .menu-item-92853 .astra-mm-icon-label.icon-item-92853{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92853 .astra-mm-icon-label.icon-item-92853 svg, .ast-header-break-point .menu-item-92853 .astra-mm-icon-label.icon-item-92853 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-89677 .astra-mm-icon-label.icon-item-89677, .ast-header-break-point .menu-item-89677 .astra-mm-icon-label.icon-item-89677{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-89677 .astra-mm-icon-label.icon-item-89677 svg, .ast-header-break-point .menu-item-89677 .astra-mm-icon-label.icon-item-89677 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92848 .astra-mm-icon-label.icon-item-92848, .ast-header-break-point .menu-item-92848 .astra-mm-icon-label.icon-item-92848{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92848 .astra-mm-icon-label.icon-item-92848 svg, .ast-header-break-point .menu-item-92848 .astra-mm-icon-label.icon-item-92848 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94440 .astra-mm-icon-label.icon-item-94440, .ast-header-break-point .menu-item-94440 .astra-mm-icon-label.icon-item-94440{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94440 .astra-mm-icon-label.icon-item-94440 svg, .ast-header-break-point .menu-item-94440 .astra-mm-icon-label.icon-item-94440 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92854 .astra-mm-icon-label.icon-item-92854, .ast-header-break-point .menu-item-92854 .astra-mm-icon-label.icon-item-92854{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92854 .astra-mm-icon-label.icon-item-92854 svg, .ast-header-break-point .menu-item-92854 .astra-mm-icon-label.icon-item-92854 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94457 .astra-mm-icon-label.icon-item-94457, .ast-header-break-point .menu-item-94457 .astra-mm-icon-label.icon-item-94457{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94457 .astra-mm-icon-label.icon-item-94457 svg, .ast-header-break-point .menu-item-94457 .astra-mm-icon-label.icon-item-94457 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94458 .astra-mm-icon-label.icon-item-94458, .ast-header-break-point .menu-item-94458 .astra-mm-icon-label.icon-item-94458{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94458 .astra-mm-icon-label.icon-item-94458 svg, .ast-header-break-point .menu-item-94458 .astra-mm-icon-label.icon-item-94458 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94447 .astra-mm-icon-label.icon-item-94447, .ast-header-break-point .menu-item-94447 .astra-mm-icon-label.icon-item-94447{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94447 .astra-mm-icon-label.icon-item-94447 svg, .ast-header-break-point .menu-item-94447 .astra-mm-icon-label.icon-item-94447 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94448 .astra-mm-icon-label.icon-item-94448, .ast-header-break-point .menu-item-94448 .astra-mm-icon-label.icon-item-94448{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94448 .astra-mm-icon-label.icon-item-94448 svg, .ast-header-break-point .menu-item-94448 .astra-mm-icon-label.icon-item-94448 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94449 .astra-mm-icon-label.icon-item-94449, .ast-header-break-point .menu-item-94449 .astra-mm-icon-label.icon-item-94449{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94449 .astra-mm-icon-label.icon-item-94449 svg, .ast-header-break-point .menu-item-94449 .astra-mm-icon-label.icon-item-94449 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94453 .astra-mm-icon-label.icon-item-94453, .ast-header-break-point .menu-item-94453 .astra-mm-icon-label.icon-item-94453{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94453 .astra-mm-icon-label.icon-item-94453 svg, .ast-header-break-point .menu-item-94453 .astra-mm-icon-label.icon-item-94453 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94454 .astra-mm-icon-label.icon-item-94454, .ast-header-break-point .menu-item-94454 .astra-mm-icon-label.icon-item-94454{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94454 .astra-mm-icon-label.icon-item-94454 svg, .ast-header-break-point .menu-item-94454 .astra-mm-icon-label.icon-item-94454 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94455 .astra-mm-icon-label.icon-item-94455, .ast-header-break-point .menu-item-94455 .astra-mm-icon-label.icon-item-94455{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94455 .astra-mm-icon-label.icon-item-94455 svg, .ast-header-break-point .menu-item-94455 .astra-mm-icon-label.icon-item-94455 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94456 .astra-mm-icon-label.icon-item-94456, .ast-header-break-point .menu-item-94456 .astra-mm-icon-label.icon-item-94456{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94456 .astra-mm-icon-label.icon-item-94456 svg, .ast-header-break-point .menu-item-94456 .astra-mm-icon-label.icon-item-94456 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94450 .astra-mm-icon-label.icon-item-94450, .ast-header-break-point .menu-item-94450 .astra-mm-icon-label.icon-item-94450{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94450 .astra-mm-icon-label.icon-item-94450 svg, .ast-header-break-point .menu-item-94450 .astra-mm-icon-label.icon-item-94450 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94451 .astra-mm-icon-label.icon-item-94451, .ast-header-break-point .menu-item-94451 .astra-mm-icon-label.icon-item-94451{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94451 .astra-mm-icon-label.icon-item-94451 svg, .ast-header-break-point .menu-item-94451 .astra-mm-icon-label.icon-item-94451 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94452 .astra-mm-icon-label.icon-item-94452, .ast-header-break-point .menu-item-94452 .astra-mm-icon-label.icon-item-94452{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94452 .astra-mm-icon-label.icon-item-94452 svg, .ast-header-break-point .menu-item-94452 .astra-mm-icon-label.icon-item-94452 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92855 .astra-mm-icon-label.icon-item-92855, .ast-header-break-point .menu-item-92855 .astra-mm-icon-label.icon-item-92855{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92855 .astra-mm-icon-label.icon-item-92855 svg, .ast-header-break-point .menu-item-92855 .astra-mm-icon-label.icon-item-92855 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94445 .astra-mm-icon-label.icon-item-94445, .ast-header-break-point .menu-item-94445 .astra-mm-icon-label.icon-item-94445{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94445 .astra-mm-icon-label.icon-item-94445 svg, .ast-header-break-point .menu-item-94445 .astra-mm-icon-label.icon-item-94445 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94446 .astra-mm-icon-label.icon-item-94446, .ast-header-break-point .menu-item-94446 .astra-mm-icon-label.icon-item-94446{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94446 .astra-mm-icon-label.icon-item-94446 svg, .ast-header-break-point .menu-item-94446 .astra-mm-icon-label.icon-item-94446 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91464 .astra-mm-icon-label.icon-item-91464, .ast-header-break-point .menu-item-91464 .astra-mm-icon-label.icon-item-91464{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91464 .astra-mm-icon-label.icon-item-91464 svg, .ast-header-break-point .menu-item-91464 .astra-mm-icon-label.icon-item-91464 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91551 .astra-mm-icon-label.icon-item-91551, .ast-header-break-point .menu-item-91551 .astra-mm-icon-label.icon-item-91551{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91551 .astra-mm-icon-label.icon-item-91551 svg, .ast-header-break-point .menu-item-91551 .astra-mm-icon-label.icon-item-91551 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91465 .astra-mm-icon-label.icon-item-91465, .ast-header-break-point .menu-item-91465 .astra-mm-icon-label.icon-item-91465{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91465 .astra-mm-icon-label.icon-item-91465 svg, .ast-header-break-point .menu-item-91465 .astra-mm-icon-label.icon-item-91465 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91466 .astra-mm-icon-label.icon-item-91466, .ast-header-break-point .menu-item-91466 .astra-mm-icon-label.icon-item-91466{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91466 .astra-mm-icon-label.icon-item-91466 svg, .ast-header-break-point .menu-item-91466 .astra-mm-icon-label.icon-item-91466 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91467 .astra-mm-icon-label.icon-item-91467, .ast-header-break-point .menu-item-91467 .astra-mm-icon-label.icon-item-91467{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91467 .astra-mm-icon-label.icon-item-91467 svg, .ast-header-break-point .menu-item-91467 .astra-mm-icon-label.icon-item-91467 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91468 .astra-mm-icon-label.icon-item-91468, .ast-header-break-point .menu-item-91468 .astra-mm-icon-label.icon-item-91468{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91468 .astra-mm-icon-label.icon-item-91468 svg, .ast-header-break-point .menu-item-91468 .astra-mm-icon-label.icon-item-91468 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91567 .astra-mm-icon-label.icon-item-91567, .ast-header-break-point .menu-item-91567 .astra-mm-icon-label.icon-item-91567{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91567 .astra-mm-icon-label.icon-item-91567 svg, .ast-header-break-point .menu-item-91567 .astra-mm-icon-label.icon-item-91567 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91568 .astra-mm-icon-label.icon-item-91568, .ast-header-break-point .menu-item-91568 .astra-mm-icon-label.icon-item-91568{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91568 .astra-mm-icon-label.icon-item-91568 svg, .ast-header-break-point .menu-item-91568 .astra-mm-icon-label.icon-item-91568 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91569 .astra-mm-icon-label.icon-item-91569, .ast-header-break-point .menu-item-91569 .astra-mm-icon-label.icon-item-91569{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91569 .astra-mm-icon-label.icon-item-91569 svg, .ast-header-break-point .menu-item-91569 .astra-mm-icon-label.icon-item-91569 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91570 .astra-mm-icon-label.icon-item-91570, .ast-header-break-point .menu-item-91570 .astra-mm-icon-label.icon-item-91570{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91570 .astra-mm-icon-label.icon-item-91570 svg, .ast-header-break-point .menu-item-91570 .astra-mm-icon-label.icon-item-91570 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91552 .astra-mm-icon-label.icon-item-91552, .ast-header-break-point .menu-item-91552 .astra-mm-icon-label.icon-item-91552{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91552 .astra-mm-icon-label.icon-item-91552 svg, .ast-header-break-point .menu-item-91552 .astra-mm-icon-label.icon-item-91552 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91553 .astra-mm-icon-label.icon-item-91553, .ast-header-break-point .menu-item-91553 .astra-mm-icon-label.icon-item-91553{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91553 .astra-mm-icon-label.icon-item-91553 svg, .ast-header-break-point .menu-item-91553 .astra-mm-icon-label.icon-item-91553 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91554 .astra-mm-icon-label.icon-item-91554, .ast-header-break-point .menu-item-91554 .astra-mm-icon-label.icon-item-91554{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91554 .astra-mm-icon-label.icon-item-91554 svg, .ast-header-break-point .menu-item-91554 .astra-mm-icon-label.icon-item-91554 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91555 .astra-mm-icon-label.icon-item-91555, .ast-header-break-point .menu-item-91555 .astra-mm-icon-label.icon-item-91555{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91555 .astra-mm-icon-label.icon-item-91555 svg, .ast-header-break-point .menu-item-91555 .astra-mm-icon-label.icon-item-91555 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91571 .astra-mm-icon-label.icon-item-91571, .ast-header-break-point .menu-item-91571 .astra-mm-icon-label.icon-item-91571{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91571 .astra-mm-icon-label.icon-item-91571 svg, .ast-header-break-point .menu-item-91571 .astra-mm-icon-label.icon-item-91571 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91572 .astra-mm-icon-label.icon-item-91572, .ast-header-break-point .menu-item-91572 .astra-mm-icon-label.icon-item-91572{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91572 .astra-mm-icon-label.icon-item-91572 svg, .ast-header-break-point .menu-item-91572 .astra-mm-icon-label.icon-item-91572 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91576 .astra-mm-icon-label.icon-item-91576, .ast-header-break-point .menu-item-91576 .astra-mm-icon-label.icon-item-91576{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91576 .astra-mm-icon-label.icon-item-91576 svg, .ast-header-break-point .menu-item-91576 .astra-mm-icon-label.icon-item-91576 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91577 .astra-mm-icon-label.icon-item-91577, .ast-header-break-point .menu-item-91577 .astra-mm-icon-label.icon-item-91577{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91577 .astra-mm-icon-label.icon-item-91577 svg, .ast-header-break-point .menu-item-91577 .astra-mm-icon-label.icon-item-91577 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91578 .astra-mm-icon-label.icon-item-91578, .ast-header-break-point .menu-item-91578 .astra-mm-icon-label.icon-item-91578{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91578 .astra-mm-icon-label.icon-item-91578 svg, .ast-header-break-point .menu-item-91578 .astra-mm-icon-label.icon-item-91578 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91579 .astra-mm-icon-label.icon-item-91579, .ast-header-break-point .menu-item-91579 .astra-mm-icon-label.icon-item-91579{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91579 .astra-mm-icon-label.icon-item-91579 svg, .ast-header-break-point .menu-item-91579 .astra-mm-icon-label.icon-item-91579 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91580 .astra-mm-icon-label.icon-item-91580, .ast-header-break-point .menu-item-91580 .astra-mm-icon-label.icon-item-91580{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91580 .astra-mm-icon-label.icon-item-91580 svg, .ast-header-break-point .menu-item-91580 .astra-mm-icon-label.icon-item-91580 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91581 .astra-mm-icon-label.icon-item-91581, .ast-header-break-point .menu-item-91581 .astra-mm-icon-label.icon-item-91581{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91581 .astra-mm-icon-label.icon-item-91581 svg, .ast-header-break-point .menu-item-91581 .astra-mm-icon-label.icon-item-91581 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91582 .astra-mm-icon-label.icon-item-91582, .ast-header-break-point .menu-item-91582 .astra-mm-icon-label.icon-item-91582{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91582 .astra-mm-icon-label.icon-item-91582 svg, .ast-header-break-point .menu-item-91582 .astra-mm-icon-label.icon-item-91582 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91583 .astra-mm-icon-label.icon-item-91583, .ast-header-break-point .menu-item-91583 .astra-mm-icon-label.icon-item-91583{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91583 .astra-mm-icon-label.icon-item-91583 svg, .ast-header-break-point .menu-item-91583 .astra-mm-icon-label.icon-item-91583 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91584 .astra-mm-icon-label.icon-item-91584, .ast-header-break-point .menu-item-91584 .astra-mm-icon-label.icon-item-91584{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91584 .astra-mm-icon-label.icon-item-91584 svg, .ast-header-break-point .menu-item-91584 .astra-mm-icon-label.icon-item-91584 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91585 .astra-mm-icon-label.icon-item-91585, .ast-header-break-point .menu-item-91585 .astra-mm-icon-label.icon-item-91585{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91585 .astra-mm-icon-label.icon-item-91585 svg, .ast-header-break-point .menu-item-91585 .astra-mm-icon-label.icon-item-91585 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91586 .astra-mm-icon-label.icon-item-91586, .ast-header-break-point .menu-item-91586 .astra-mm-icon-label.icon-item-91586{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91586 .astra-mm-icon-label.icon-item-91586 svg, .ast-header-break-point .menu-item-91586 .astra-mm-icon-label.icon-item-91586 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-91587 .astra-mm-icon-label.icon-item-91587, .ast-header-break-point .menu-item-91587 .astra-mm-icon-label.icon-item-91587{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-91587 .astra-mm-icon-label.icon-item-91587 svg, .ast-header-break-point .menu-item-91587 .astra-mm-icon-label.icon-item-91587 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg, .ast-header-break-point .menu-item-83158 .astra-mm-icon-label.icon-item-83158 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg, .ast-header-break-point .menu-item-83159 .astra-mm-icon-label.icon-item-83159 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg, .ast-header-break-point .menu-item-83160 .astra-mm-icon-label.icon-item-83160 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg, .ast-header-break-point .menu-item-83161 .astra-mm-icon-label.icon-item-83161 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg, .ast-header-break-point .menu-item-83162 .astra-mm-icon-label.icon-item-83162 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg, .ast-header-break-point .menu-item-83163 .astra-mm-icon-label.icon-item-83163 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg, .ast-header-break-point .menu-item-83164 .astra-mm-icon-label.icon-item-83164 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg, .ast-header-break-point .menu-item-83165 .astra-mm-icon-label.icon-item-83165 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg, .ast-header-break-point .menu-item-83166 .astra-mm-icon-label.icon-item-83166 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg, .ast-header-break-point .menu-item-83167 .astra-mm-icon-label.icon-item-83167 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg, .ast-header-break-point .menu-item-83168 .astra-mm-icon-label.icon-item-83168 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg, .ast-header-break-point .menu-item-83171 .astra-mm-icon-label.icon-item-83171 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg, .ast-header-break-point .menu-item-92857 .astra-mm-icon-label.icon-item-92857 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg, .ast-header-break-point .menu-item-94436 .astra-mm-icon-label.icon-item-94436 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg, .ast-header-break-point .menu-item-83169 .astra-mm-icon-label.icon-item-83169 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg, .ast-header-break-point .menu-item-83170 .astra-mm-icon-label.icon-item-83170 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg, .ast-header-break-point .menu-item-83172 .astra-mm-icon-label.icon-item-83172 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg, .ast-header-break-point .menu-item-83173 .astra-mm-icon-label.icon-item-83173 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg, .ast-header-break-point .menu-item-83174 .astra-mm-icon-label.icon-item-83174 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg, .ast-header-break-point .menu-item-93626 .astra-mm-icon-label.icon-item-93626 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg, .ast-header-break-point .menu-item-93627 .astra-mm-icon-label.icon-item-93627 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg, .ast-header-break-point .menu-item-93628 .astra-mm-icon-label.icon-item-93628 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg, .ast-header-break-point .menu-item-93629 .astra-mm-icon-label.icon-item-93629 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg, .ast-header-break-point .menu-item-93630 .astra-mm-icon-label.icon-item-93630 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631{display:inline-block;vertical-align:middle;line-height:0;margin:5px;}.ast-desktop .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg, .ast-header-break-point .menu-item-93631 .astra-mm-icon-label.icon-item-93631 svg{color:var(--ast-global-color-0);fill:var(--ast-global-color-0);width:20px;height:20px;} </style> <script type="rocketlazyloadscript" data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-includes/js/comment-reply.min.js?ver=e0e38c02bd76ab7ba51b1dcce760a132" id="comment-reply-js" async data-wp-strategy="async"></script> <script id="astra-theme-js-js-extra"> var astra = {"break_point":"1180","isRtl":"","is_scroll_to_id":"","is_scroll_to_top":"1","is_header_footer_builder_active":"1","revealEffectEnable":"","edit_post_url":"https:\/\/www.mygreatlearning.com\/blog\/wp-admin\/post.php?post={{id}}&action=edit","ajax_url":"https:\/\/www.mygreatlearning.com\/blog\/wp-admin\/admin-ajax.php","infinite_count":"2","infinite_total":"0","pagination":"number","infinite_scroll_event":"scroll","no_more_post_message":"No more posts to show.","grid_layout":"1","site_url":"https:\/\/www.mygreatlearning.com\/blog","blogArchiveTitleLayout":"","show_comments":"Show Comments","masonryEnabled":"","blogMasonryBreakPoint":"1180"}; </script> <script type="rocketlazyloadscript" defer data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/themes/astra/assets/js/minified/frontend.min.js?ver=4.6.2" id="astra-theme-js-js"></script> <script id="astra-addon-js-js-extra"> var astraAddon = {"sticky_active":"","svgIconClose":"<span class=\"ast-icon icon-close\"><svg viewBox=\"0 0 512 512\" aria-hidden=\"true\" role=\"img\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" width=\"18px\" height=\"18px\">\n <path d=\"M71.029 71.029c9.373-9.372 24.569-9.372 33.942 0L256 222.059l151.029-151.03c9.373-9.372 24.569-9.372 33.942 0 9.372 9.373 9.372 24.569 0 33.942L289.941 256l151.03 151.029c9.372 9.373 9.372 24.569 0 33.942-9.373 9.372-24.569 9.372-33.942 0L256 289.941l-151.029 151.03c-9.373 9.372-24.569 9.372-33.942 0-9.372-9.373-9.372-24.569 0-33.942L222.059 256 71.029 104.971c-9.372-9.373-9.372-24.569 0-33.942z\" \/>\n <\/svg><\/span>","hf_account_show_menu_on":"hover","hf_account_action_type":"link","hook_sticky_footer":"","hook_sticky_footer_on_devices":"desktop","hook_custom_footer_break_point":"921","is_header_builder_active":"1"}; </script> <script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/cache/min/1/blog/wp-content/uploads/astra-addon/astra-addon-6606d5e2c3ae85-45643607.js?ver=1711724008" id="astra-addon-js-js"></script> <script type="rocketlazyloadscript" defer data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/themes/glb/vendor/select2/select2.min.js?ver=4.1.0" id="select2-js"></script> <script type="rocketlazyloadscript" defer data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/themes/glb/assets/js/lory.min.js" id="lory-js"></script> <script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/cache/min/1/blog/wp-content/themes/glb/assets/js/app.js?ver=1711649072" id="app-js"></script> <script type="rocketlazyloadscript" data-rocket-src="https://www.google.com/recaptcha/api.js?hl=en&ver=5.2.9" id="google-recaptcha-v2-js"></script> <script type="rocketlazyloadscript"> /(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1); </script> <script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue} if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue} images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1} if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://d3w1kvgvzbz2b5.cloudfront.net/blog/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=[];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script> </body> </html> <!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1714192982 -->