Creating a Browser Detector with HTML, CSS, and JavaScript

Faraz

By Faraz -

Learn how to create a robust browser detector using HTML, CSS, and JavaScript. Ensure compatibility and enhance user experiences with this step-by-step guide.


Creating a Browser Detector with HTML, CSS, and JavaScript.jpg

Table of Contents

  1. Project Introduction
  2. HTML Code
  3. CSS Code
  4. JavaScript Code
  5. Preview
  6. Conclusion

In the ever-evolving landscape of web development, ensuring a seamless user experience across various browsers is paramount. Have you ever visited a website that looked stunning on one browser but appeared broken or distorted on another? This common frustration can be alleviated with the implementation of a browser detector—a valuable tool in a web developer's arsenal.

In this comprehensive guide, we'll delve into the world of browser detection using HTML, CSS, and JavaScript. You'll learn how to create a browser detector from scratch, allowing you to tailor your web content to the specific needs and capabilities of different browsers. Whether you're a seasoned developer seeking to enhance cross-browser compatibility or a newcomer to the field, this tutorial will equip you with the knowledge and skills needed to navigate the intricacies of browser detection effectively.

Prerequisites:

Before starting this tutorial, you should have a basic understanding of HTML, CSS, and JavaScript. Additionally, you will need a code editor such as Visual Studio Code or Sublime Text to write and save your code.

Source Code

Step 1 (HTML Code):

To get started, we will first need to create a basic HTML file. In this file, we will include the main structure for our browser detector.

After creating the files just paste the following codes into your file. Make sure to save your HTML document with a .html extension, so that it can be properly viewed in a web browser.

Let's break down the code step by step:

1. <!DOCTYPE html>: This is the document type declaration and specifies that the document is written in HTML5.

2. <html lang="en">: This is the opening tag for the HTML document. The lang attribute is set to "en," indicating that the primary language of the document is English.

3. <head>: This is the head section of the HTML document. It contains metadata about the document, such as character encoding and page title.

  • <meta charset="UTF-8">: This meta tag sets the character encoding of the document to UTF-8, which is a widely used character encoding for handling text in various languages.
  • <meta http-equiv="X-UA-Compatible" content="IE=edge">: This meta tag is often used for compatibility with Internet Explorer. It instructs the browser to use the latest rendering engine available (typically used to ensure compatibility with older versions of Internet Explorer).
  • <meta name="viewport" content="width=device-width, initial-scale=1.0">: This meta tag sets the viewport properties, which are important for responsive web design. It tells the browser to set the width of the viewport to the device width and set the initial zoom level to 1.0.
  • <title>Browser Detector</title>: This sets the title of the web page to "Browser Detector." The title appears in the browser's title bar or tab.
  • <link rel="stylesheet" href="styles.css">: This line includes an external CSS (Cascading Style Sheets) file named "styles.css" to apply styles to the HTML content. It links the HTML document to the stylesheet.

4. <body>: This is the body section of the HTML document, where the visible content of the web page is placed.

5. <div class="wrapper">: This div element has a class attribute set to "wrapper." It is used to create a container for the page content.

6. <h1>Browser :</h1>: This is a level 1 (top-level) heading element that displays the text "Browser : ".

7. <div class="logo">: This div element with a class attribute set to "logo" is used to group a series of images.

  • Several <img> elements: These <img> elements are used to display images. Each image has a class, src attribute pointing to the image file, and alt and title attributes for accessibility and tooltips.

8. <script src="script.js"></script>: This line includes an external JavaScript file named "script.js." It links the HTML document to the JavaScript file, which can contain code that adds interactivity and functionality to the web page.

This is the basic structure of our browser detector using HTML, and now we can move on to styling it using CSS.

Step 2 (CSS Code):

Once the basic HTML structure of the browser detector is in place, the next step is to add styling to the detector using CSS.

Next, we will create our CSS file. In this file, we will use some basic CSS rules to create our detector. Let me break down each part of the code and explain its purpose:

1. * selector:

  • The * selector targets all elements on the webpage.
  • margin: 0; and padding: 0; are used to reset the default margin and padding of all elements to zero.
  • box-sizing: border-box; sets the box-sizing model to "border-box," which means that an element's padding and border are included in its total width and height. This helps ensure consistent sizing and spacing.

2. body selector:

  • The body selector targets the <body> element of the webpage.
  • display: flex; sets the display property to "flex," which allows the body to behave as a flex container.
  • align-items: center; and justify-content: center; center the content both vertically and horizontally within the body.
  • min-height: 100vh; ensures that the body takes up at least the full height of the viewport (100vh).
  • background-color: blueviolet; sets the background color of the body to "blueviolet."

3. .wrapper selector:

  • The .wrapper selector targets elements with the class "wrapper."
  • display: flex; sets the display property to "flex" for elements with this class.
  • align-items: center; and justify-content: center; center the content both vertically and horizontally within elements with this class.
  • background-color: white; sets the background color of elements with this class to white.
  • padding: 30px 40px; adds padding of 30 pixels on the top and bottom and 40 pixels on the left and right.
  • border-radius: 25px; rounds the corners of elements with this class with a radius of 25 pixels.

4. .wrapper h1 selector:

  • The .wrapper h1 selector targets <h1> elements inside elements with the class "wrapper."
  • font-size: 45px; sets the font size of these <h1> elements to 45 pixels.

5. .wrapper .logo selector:

  • The .wrapper .logo selector targets elements with the class "logo" inside elements with the class "wrapper."
  • margin-left: 20px; adds a left margin of 20 pixels to these elements.

6. .logo img selector:

  • The .logo img selector targets <img> elements inside elements with the class "logo."
  • It styles these images by setting their width and height, adding some margin, setting opacity, and specifying a transition effect.

7. Media queries:

  • Media queries are used to apply different styles based on the screen width.
  • There are multiple media queries in this code, each with specific screen width conditions.
  • For example, when the screen width is less than or equal to 835 pixels, certain styles like padding, font size, and image size are adjusted to make the page more responsive on smaller screens.
  • Similar adjustments are made for different screen width ranges in the subsequent media queries.

This will give our browser detector an upgraded presentation. Create a CSS file with the name of styles.css and paste the given codes into your CSS file. Remember that you must create a file with the .css extension.

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: blueviolet;
}

.wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 30px 40px;
  border-radius: 25px;
}

.wrapper h1{
  font-size: 45px;
}

.wrapper .logo{
  margin-left: 20px;
}

.logo img{
  margin: 0 7px;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  width: 85px;
  height: 85px;
}

@media screen and (max-width: 835px) {
  .wrapper{
      padding: 20px 30px;
  }

  .wrapper h1{
      font-size: 35px;
  }
  
  .wrapper .logo{
      margin-left: 10px;
  }

  .logo img{
      width: 65px;
  height: 65px;
  }
}

@media screen and (max-width: 650px) {
  .wrapper{
      padding: 15px 20px;
  }

  .wrapper h1{
      font-size: 25px;
  }
  
  .wrapper .logo{
      margin-left: 8px;
  }

  .logo img{
      width: 55px;
  height: 55px;
  }
}

@media screen and (max-width: 520px) {
  .wrapper{
      padding: 10px 15px;
      flex-direction: column;
  }

  .wrapper h1{
      font-size: 20px;
  }
  
  .wrapper .logo{
      margin-left: 5px;
  }

  .logo img{
      width: 50px;
  height: 50px;
  }
}

@media screen and (max-width: 385px) {
  .wrapper{
      padding: 10px 15px;
      flex-direction: column;
  }

  .wrapper h1{
      font-size: 20px;
  }
  
  .wrapper .logo{
      margin-left: 5px;
  }

  .logo img{
      width: 40px;
      height: 40px;
  }
} 

Step 3 (JavaScript Code):

Finally, we need to create a function in JavaScript. Here's a step-by-step explanation of how it works:

1. let userAgent = navigator.userAgent;: This line stores information about the user's web browser in the userAgent variable. The navigator.userAgent property contains a string that represents the user agent header sent by the browser, which typically includes information about the browser and the device.

2. let Browser;: This line declares a variable named Browser without assigning a value to it. This variable will be used to store the detected browser name.

3. The following code block checks the userAgent string for various browser identifiers using regular expressions (regex). It tries to match certain patterns in the userAgent string to identify the browser. Here are the checks:

  • if (userAgent.match(/edg/i)): If the user agent string contains the substring "edg" (case-insensitive), it sets Browser to "Edge" to identify Microsoft Edge.
  • else if (userAgent.match(/opr/i)): If the user agent string contains the substring "opr" (case-insensitive), it sets Browser to "Opera" to identify the Opera browser.
  • else if (userAgent.match(/firefox/i)): If the user agent string contains the substring "firefox" (case-insensitive), it sets Browser to "Firefox" to identify Mozilla Firefox.
  • else if (userAgent.match(/chrome/i)): If the user agent string contains the substring "chrome" (case-insensitive), it sets Browser to "Chrome" to identify Google Chrome.
  • else if (userAgent.match(/safari/i)): If the user agent string contains the substring "safari" (case-insensitive), it sets Browser to "Safari" to identify the Safari browser.
  • If none of the above conditions match, it assumes that the user is using a different or unknown browser and displays an alert with the message "Other Browser."

4. const logo = document.querySelector(\.logo .${Browser}`);: This line uses the document.querySelectormethod to select an HTML element with a class name that matches the detectedBrowservalue. For example, if theBrowser` is "Chrome," it will attempt to select an element with the class name "logo Chrome."

5. if (logo != ""): This conditional statement checks if the logo variable is not an empty string. If the logo element is found, it proceeds to the next line.

6. logo.style.opacity = "1";: If a matching logo element is found, this line sets the CSS opacity property of the logo element to "1," making it fully visible.

Create a JavaScript file with the name script.js and paste the given codes into your JavaScript file and make sure it's linked properly to your HTML document so that the scripts are executed on the page. Remember, you’ve to create a file with .js extension.

let userAgent = navigator.userAgent;

let Browser;
if(userAgent.match(/edg/i)){
    Browser = "Edge";
}else if(userAgent.match(/opr/i)){
    Browser = "Opera";
}else if(userAgent.match(/firefox/i)){
    Browser = "Firefox";
}else if(userAgent.match(/chrome/i)){
    Browser = "Chrome";
}else if(userAgent.match(/safari/i)){
    Browser = "Safari";
}else{
    alert("Other Browser");
}

const logo = document.querySelector(`.logo .${Browser}`);
if(logo != ""){
    logo.style.opacity = "1";
}

Final Output:

Creating a Browser Detector with HTML, CSS, and JavaScript.gif

Conclusion:

In conclusion, mastering browser detection with HTML, CSS, and JavaScript is a crucial skill for web developers. It empowers you to create websites that function flawlessly across various browsers, enhancing user experiences and bolstering your online presence. With the knowledge gained from this guide, you're well-prepared to navigate the complexities of web development and ensure your web content shines on every browser. Happy coding!

Code by: ZeroOctave

That’s a wrap!

I hope you enjoyed this post. Now, with these examples, you can create your own amazing page.

Did you like it? Let me know in the comments below 🔥 and you can support me by buying me a coffee.

And don’t forget to sign up to our email newsletter so you can get useful content like this sent right to your inbox!

Thanks!
Faraz 😊

End of the article

Subscribe to my Newsletter

Get the latest posts delivered right to your inbox


Latest Post