Responsive Landing Page Using HTML and CSS

Arhaan Ali
7 min readSep 30, 2023

--

Hey everyone hope you all of fine, todday we are going to learn how to create a responsive landing page using HTML and CSS from scratch. I’ve made the complete video tutorial and also I’m going to share with you the source code of the project.

A landing page is a crucial component of any website or online business. It is the first page that users see when they visit your website, and it can determine whether they stay or leave. A well-designed landing page should be visually appealing, easy to navigate, and most importantly, responsive. In this article, we will discuss how to create a responsive landing page using HTML and CSS.

Responsive Landing Page Using HTML and CSS

Why a Responsive Landing Page is Important?

With the increasing number of mobile users, it’s important to create a website that is responsive and mobile-friendly. In fact, Google’s mobile-first indexing means that websites that are not mobile-friendly are likely to rank lower in search engine results pages. Therefore, creating a responsive landing page ensures that your website is accessible to a wider range of users, leading to better engagement and higher conversion rates.

Responsive Landing Page Using HTML and CSS

let’s look at the steps we need to follow on it to create a responsive landing page, basically, when you design a landing page you’ve an idea about it. Then you will able to design the the professional layouts.

Step 1: Plan your layout

Before you start coding, it’s essential to plan your layout. Consider the elements you want to include on your landing page, such as the header, footer, content, and call-to-action. Sketch out a wireframe or use a prototyping tool to visualize the layout.

Step 2: Set up your HTML structure

Start by creating an HTML document and setting up the basic structure. The structure typically includes the doctype declaration, HTML, head, and body tags. In the head section, you can add the title, meta tags, and links to external files, such as stylesheets and scripts.

Step 3: Create the header

The header is typically the first thing users see when they visit your landing page. It should be visually appealing and include your logo, navigation menu, and any important information, such as your tagline or value proposition.

To create a responsive header, use CSS media queries to adjust the layout based on screen size. For example, you can use a flexbox layout for larger screens and switch to a hamburger menu for smaller screens.

Step 4: Design the hero section

The hero section is the main area of your landing page and should grab the user’s attention. It typically includes a headline, subheadline, and a call-to-action button.

To make the hero section responsive, use CSS to adjust the font size, spacing, and layout based on screen size. You can also use background images and videos to enhance the visual appeal.

Step 5: Add content sections

The content sections should provide more information about your product or service. Consider breaking up the content into smaller sections and using images, icons, or videos to make it more visually appealing.

To create responsive content sections, use CSS to adjust the layout based on screen size. For example, you can use a grid layout for larger screens and switch to a stacked layout for smaller screens.

Step 6: Include social proof

Social proof, such as testimonials or customer reviews, can help build trust and credibility. Consider including social proof on your landing page to increase conversions.

You May Also Like:

To make social proof responsive, use CSS to adjust the layout and font size based on screen size. You can also use a slider or carousel to display multiple testimonials or reviews.

Step 7: Design the footer

The footer should include important information, such as your contact details, copyright notice, and links to your social media profiles.To create a responsive footer, use CSS to adjust the layout based on screen size. You can also use a sticky footer to keep it visible at all times.

Step 8: Test your landing page

Before launching your landing page, test it on different devices and screen sizes to ensure that it is responsive and looks good on all devices. You can use tools such as Google’s Mobile-Friendly Test to check if your landing page is mobile-friendly.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href=" https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
/>
<title>Responsive Landing Page in HTML CSS and JavaScript</title>
</head>
<body>
<header>
<div class="container">
<div class="navbar">
<div class="logo">
<img src="img/logo-color.png" alt="" />
</div>
<nav>
<div class="btn">
<i class="fa fa-times close-btn"></i>
</div>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</nav>
<div class="btn">
<i class="fa fa-bars menu-btn"></i>
</div>
</div>
</div>
</header>
<section>
<video autoplay muted loop>
<source src="video/video2.mp4" type="video/mp4" />
</video>
<div class="container">
<div class="content">
<h2>Tour Your Dream</h2>
<h2>destination with</h2>
<h2>Travel.</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sapiente
sed, officia quae eum iusto ratione autem eius minus, nisi
laboriosam id ullam aliquam sunt deserunt, magni natus maiores
placeat perferendis.
</p>
<button>Explore More</button>
<div class="social_icons">
<i class="fa fa-brands fa-facebook"></i>
<i class="fa fa-brands fa-twitter"></i>
<i class="fa fa-brands fa-instagram"></i>
<i class="fa fa-brands fa-pinterest"></i>
</div>
</div>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>

here is index.html first of all we need to look at that navbar, inside the navbar we are going to display the image logo, navbar links, and background color inside the navbar.

Then we need to design the hero section, inside the the hero section, we are going to use a video background and content such as text, buttons and social sharing icons.

@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu:ital,wght@0,500;0,700;1,400&display=swap');


*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "poppins";
}
header{
background: #6d67e4;
position: relative;
}
.container{
max-width: 1440px;
padding: 0 50px;
margin: 0 auto;
}

.logo img{
display: block;
object-fit: cover;
width: 30%;
}
.navbar{
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar nav{
display: flex;
align-items: center;
padding: 1.5rem 0;
}
.navbar nav li{
list-style: none;
margin-left: 1rem;
}
.navbar nav li a{
text-decoration: none;
color: #fff;
font-size: 1.1rem;
padding: 0.7rem 0.6rem;
border-radius: 6px;
transition: all 0.4s ease-in;
}
.navbar nav li a:hover{
background: #3498db;
color: #fff;
}
section video{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.content{
display: flex;
flex-direction: column;
width: 60%;
justify-content: center;
height: 90vh;
}
.content h2{
font-size: 4.5rem;
color: #fff;
font-family: "ubuntu",sans-serif;
}
.content p{
color: #fff;
line-height: 2;
margin-top: 1rem;
}
.content button{
display: block;
margin: 2rem 0;
width: 21%;
padding: 0.7rem 0;
cursor: pointer;
font-size: 1rem;
border-radius: 4px;
border: 1px solid #ddd;
background: inherit;
color: #fff;
transition: all 0.3s ease-in-out;
}

.content button:hover,i:hover{
background: #3498db;
}
.content .social_icons{
display: flex;
justify-content: space-between;
width: 50%;
font-size: 1.9rem;
cursor: pointer;;
margin-top: 2rem;
}
.content .social_icons i{
padding: 0.6rem;
color: #fff;
border-radius: 5px;
border: 1px solid #ddd;
transition: all 0.5s ease-in-out;
}
.navbar .btn{
font-size: 1.2rem;
color: #fff;
align-items: center;
cursor: pointer;
display: none;
}
@media(max-width: 1058px){
.container{
padding: 0 25px;
}
.content h2{
font-size: 4rem;
}
.navbar nav li a{
font-size: 1rem;
}

}
@media(max-width: 902px){
.navbar .btn{
display: block;
}
.navbar nav{
position: fixed;
flex-direction: column;
min-width: 100%;
min-height: 50vh;
top: 0;
right: -100%;
background: #6d67e4;
align-items: flex-start;
justify-content: center;
}
.navbar nav.active{
right: 0;
transition: all 0.5s ease-in-out;
}
.navbar nav li{
margin: 1rem 2rem;
border-bottom: 1px solid #ddd;
padding-bottom: 1rem;
width: 100%;
}
.close-btn{
position: absolute;
top: 0;
left: 90%;
margin: 25px;
}
.content{
display: flex;
flex-direction: column;
width:100%;
justify-content: center;
height: 90vh;
align-items: center;
}
.content h2{
font-size: 3.5rem;
}
.content button{
width: 50%;
}

.content .social_icons{
justify-content: space-evenly;
width: 100%;
}

}
@media(max-width: 562px){
.content h2{
font-size: 2.5rem;
}
}
font-family: "poppins";
}

here is the style.css file, you need to use that to make a responsive landing page, finally, you need to use a little bit of JavaScript to display and hide the toggle icon, let’s look at the toggle icons.

let menu = document.querySelector('nav');
let menuBtn = document.querySelector('.menu-btn');
let closeBtn = document.querySelector('.close-btn');

menuBtn.addEventListener('click',function(){
menu.classList.add('active');
})
closeBtn.addEventListener('click',function(){
menu.classList.remove('active');
})

that’s to create a responsive landing page using html and css, hope this tutorial is helpful and beneficial for you.

Simple Landing Page HTML, CSS Code

Recently, I’ve made a Simple Landing Page using HTML and CSS I’m going to share with you a complete tutorial and source code. Inside the landing page's best feature such as Light and Dark Mode, you will learn a lot of new things from it.

Hope this tutorial is helpful and beneficial for you. I’m going to share with the source code of the project, which you can check out below.

const bodyEl = document.querySelector("body");
const toggleEl = document.querySelector(".fa-moon");

toggleEl.addEventListener("click", () => {
bodyEl.classList.toggle("dark");
if (bodyEl.classList.contains("dark")) {
toggleEl.classList.replace("fa-moon", "fa-sun");
} else {
toggleEl.classList.replace("fa-sun", "fa-moon");
}
});

If you’ve any questions/suggestions feel leave a comment below. Thanks for visiting the website have a nice day.

--

--

Arhaan Ali

I’m Developer and Blogger I’ve been sharing my personal expereince on Udemy, YouTube and Also Personal Website.