All TalkersCode Topics

Follow TalkersCode On Social Media

devloprr.com - A Social Media Network for developers Join Now ➔

HTML Background Image Full Screen Without CSS

Last Updated : Mar 11, 2024

HTML Background Image Full Screen Without CSS

In this tutorial we will show you the solution of HTML background image full screen without CSS, in HTML there are many properties of images. We find that in html, you are able to customize any image according to you.

You are also able to set and image as background, but most of developer have a problem that how to set image as background.

So, that when screen gets zoomed in and out the size of image remains same. Means it covers the whole body of entire webpage. And we done this without the use of CSS.

Step By Step Guide On HTML Background Image Full Screen Without CSS :-

Now, as there are many ways to set an image as background with full screen. But we will teach you the one in which the image should covers full screen.

This can be done with or without CSS. The below example will show you that how you able to set background image in html in full screen and no changes occur when we try to zoom in and out webpage and this all is done with the help of html attributes with any usage of CSS.

<!DOCTYPE html>
      <html>
        <head>
          <title> Title of the document<title>
 </head>
<body background-image=”demo10/logo.jpg” background-repeat=”no-repeat” background-size=”cover”>
</body>
      </html>
  1. First, we write <! DOCTYPE html> which we used as an instruction to the web browser about what version of HTML file is written in.
  2. Secondly, the <html> tag is used to indicate the beginning of an HTML document.
  3. As above now <head> tag is used to contain information about web page. In this tag a <title> tag is used which helps us to specify a webpage title. Both <head> and <title> tags are Paired tags. So, both have </head> and </title> ending tags respectively.
  4. Thirdly, <body> tag is used to define the webpage body. All the contents to show on website are written here. Here, we create a body tag, but you found that in body that there is no any image tag that is img. This is because we here want to set image in background of webpage. So, we use html attributes here in body tag, and not use any CSS property.
  5. First property used here is background image, this is used to set an image as background the URL of image is given in the value.
  6. The next attribute used is background-repeat that is already discussed in previous session. This is used so that our image does not repeat again and again.
  7. The last attribute used here that is most important is background-size, with the help of this attribute the image gets fixed in background and does not changes itself, when webpage is zoomed in and out. The value that is given is cover.
  8. This all is done with the help of html inbuilt attributes. There is no any additional CSS code behind this html code.
  9. At last, the <body> and <html> tags are closed with </body> and </html> respectively.

Conclusion :-

In conclusion, here, we can say that now you are able to set an image as background with full screen.

The size may be any of screen, and this code helps you to cover full screen, without any display size problem. I hope this tutorial on HTML background image full screen without CSS helps you.

Author Image About Riya

A recent graduate with a Bachelor of Technology (B.Tech) in Computer Science from India. She is passionate about leveraging technology to solve real-world problems. With a strong foundation and experience in programming languages such as Python, Django, HTML, CSS, and JavaScript, java, php and have honed her skills through hands-on projects and coursework.

Follow Riya On Linkedin 🡪