Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • HTML Tutorial
  • HTML Exercises
  • HTML Tags
  • HTML Attributes
  • Global Attributes
  • Event Attributes
  • HTML Interview Questions
  • HTML DOM
  • DOM Audio/Video
  • HTML 5
  • HTML Examples
  • Color Picker
  • A to Z Guide
  • HTML Formatter
Open In App
Next Article:
Design a Offer Box With Ribbon template using HTML and CSS
Next article icon

Design a Video Calling Website UI Template using HTML and CSS

Last Updated : 24 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

In this tutorial, we will learn the process of building a UI template for a Video Calling Website using HTML and CSS. Our goal is to create an attractive and user-friendly interface that makes video calls an enjoyable experience. The website will have a navigation bar with quick-access icons, a main content area that displays video feeds, and a sidebar that lists all participants in the call.

Preview

Approach:

  • First create a simple HTML layout with sections for navigation, main content, and a sidebar.
  • Add a logo and icons for navigation and sidebar sections using <img> tags.
  • Utilize CSS Flexbox to create a column layout for the navigation and sidebar.
  • Apply CSS Grid for the main content's image container, arranging images in a grid.
  • Include icons for the "People Joined" section in the left sidebar, aligning them with text.
  • Implement hover effects and animations to improve user interaction.
  • Ensure responsiveness by using relative units and flex properties, allowing for adaptability across various screen sizes.

Example: Implementation to design video calling UI template.

HTML
<!DOCTYPE html> <html lang="en">  <head>     <meta charset="UTF-8">     <meta name="viewport"            content="width=device-width, initial-scale=1.0">     <title>Layout</title>     <link rel="stylesheet" href="style.css"> </head>  <body>     <div class="container">         <div class="navigation">             <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240130154852/ddd-min.png" alt="Logo">             <!-- Icons here -->             <div class="icons">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151539/temp1.png" class="active-icon">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151538/emp2.png">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151538/temp3.png">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151538/temp4.png">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151537/temp5.png">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151537/temp6.png">             </div>         </div>         <div class="main-content">             <!-- Main content goes here -->             <div class="image-container">                 <div class="image"> <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/man.png"></div>                 <div class="image"><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/man.png"></div>                 <div class="image"><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/man.png"></div>                 <div class="image"><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/man.png"></div>             </div>             <div class="icons main-icons">                 <!-- Icons here -->                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151955/temp1.png" height="10" alt="Icon 1">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151955/temp2.png" height="10" alt="Icon 2">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240130162531/call.png" height="10" class="call-icon"                      alt="Icon 3">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151954/temp4.png" height="10" alt="Icon 4">                 <img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206151954/temp5.png" height="10" alt="Icon 5">             </div>         </div>         <div class="sidebar">             <!-- Sidebar content goes here -->             <h3>People Joined</h3>             <ul>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 1</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 2</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 3</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 4</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 5</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240208132102/girl.png" alt="Post 1">                     People 6</li>                 <li><img src= "https://media.geeksforgeeks.org/wp-content/uploads/20240206152217/t7.png" alt="Invite">                     Invite More People</li>             </ul>         </div>     </div> </body>  </html> 
CSS
/* style.css */ * {     margin: 0;     padding: 0;     box-sizing: border-box;     font-family: 'poppins', sans-serif; }  body {     background-color: #404245;     ; }  .container {     display: flex; }  .navigation {     width: 9%;     background-color: rgb(17, 41, 73);     padding: 20px;     display: flex;     flex-direction: column;     align-items: center;     border-radius: 10px; }  .navigation img {     width: 80px;     /* Adjust the width as needed */     height: 80px;     margin-bottom: 10px; }  .icons img {     width: 30px;     /* Adjust the width as needed */     height: auto;     margin-right: 10px;     border: 2px solid transparent;     /* Add border */     border-radius: 50%;     /* Add border radius */     transition: border-color 0.3s;     /* Add transition effect */     display: block;     margin: 10px;     cursor: pointer;     opacity: 0.5;     border-radius: 10px;     transition: opacity 0.5s, background 0.5s;  }  .icons img:hover {      opacity: 1;     background: #3388cc;     /* Change border color on hover */ }  .active-icon {     opacity: 1;     background: #3388cc; }  .main-content {     width: 65%;     padding: 10px;     background-color: #5e5959;     border-radius: 10px;     margin-left: 10px;     margin-right: 10px; }  .image-container {     display: grid;     grid-template-columns: repeat(2, 1fr);     grid-gap: 10px; }  .image img {     width: 90%;     border-radius: 10px;     cursor: pointer;     height: 70%; }  .main-icons {     display: flex;     justify-content: center;     align-items: center; }  .main-icons .call-icon {     width: 60px; }  .sidebar {     width: 25%;     background-color: rgb(17, 41, 73);     padding: 20px;     border-radius: 10px;     display: flex;     flex-direction: column;     align-items: center;     /* Align items center */ }  .sidebar h3 {     margin-bottom: 10px;     color: white; }  .sidebar ul {     list-style-type: none;     padding: 0;     margin-right: 100px; }  .sidebar ul li {     margin-bottom: 10px;     color: white;     display: flex;     align-items: center;     /* Align items center */ }  .sidebar ul li img {     margin-right: 10px;     height: 50px;     width: 50px; } 

Output:


Next Article
Design a Offer Box With Ribbon template using HTML and CSS
author
saif_ali
Improve
Article Tags :
  • Web Technologies
  • HTML
  • Geeks Premier League
  • Geeks Premier League 2023

Similar Reads

  • Design a Virtual Credit Card Template using HTML and CSS
    In this article, we will design a Virtual Credit Card template using HTML and CSS for a modern and interactive user experience. This design includes spaces for the card number, name, and expiry date. HTML will be used to structure the layout, while CSS will add styling for a visually pleasing and be
    3 min read
  • Bootcamp Website Template using HTML and CSS
    We will explore how to design a simple BootCamp website template using HTML and CSS. Creating an attractive template can be challenging for those who are not proficient in CSS. Without CSS, enhancing the visual appeal of a web page is difficult. Therefore, to create a compelling web page, knowledge
    6 min read
  • Design a YouTube Clone using HTML and CSS
    In this article, we will design a YouTube clone using HTML and CSS. This project replicates the fundamental features and design elements of YouTube, offering you a hands-on experience in web development. The code example illustrates a YouTube-like web page with a navigation bar, sidebar, and video s
    9 min read
  • Design a Contact us Page using HTML and CSS
    A Contact Us page is used to allow visitors to contact the website owner or administrator for various purposes, such as asking questions, giving feedback, requesting information, or reporting issues. In this article, we will see how to design a Contact Us page using HTML and CSS. Creating an attract
    4 min read
  • Design a Offer Box With Ribbon template using HTML and CSS
    To highlight special offers, discounts, or promotions, offer boxes with ribbons are a common graphic element seen in marketing and promotional materials. Usually, it is just a box or container with the offer inside that is decorated with ribbon to make it look festive and appealing. The ribbon serve
    3 min read
  • Design an About us Page using HTML and CSS
    An "About" page is a section on a website that gives you information about the people or company behind the site. It's a great way to get to know the people you're interacting with online and to learn more about their stories. ApproachFirst make the basic structure using HTML, it will include a head
    5 min read
  • Design a Wedding Theme based Page using HTML and CSS
    Designing a wedding-themed webpage is a fun way to capture the joy of this special day. In this article, we'll help you create a beautiful webpage using simple HTML and CSS. PreviewApproachFirslty, create a new file with the "index.html". Include Google Fonts, Font Awesome Icons, and external CSS li
    6 min read
  • Design a Video Slide Animation Effect using HTML CSS and JavaScript
    Nowadays, Video Slide animations are very popular. In this article, we will see how to make Video Slide Animation using HTML, CSS, and JavaScript on any webpage. Below are the two steps on how to do it. It will help the beginner to build some awesome Video Slide animations using HTML, CSS, and JS by
    4 min read
  • How to Create a Website Using HTML and CSS?
    Creating a website using HTML and CSS is a foundational skill if you are learning web development. HTML (HyperText Markup Language) is used to structure content, while CSS (Cascading Style Sheets) is used for styling, including colors, fonts, margins, and positioning. In this article, we’ll go throu
    5 min read
  • Design a Google Chrome Page Template using HTML and CSS
    Google Chrome Page Template is a replica of Google Chrome Page which can be built with the help of HTML and CSS. This project has fundamental features and design elements, a search option, along with using the FontAwsome Icons, and various CSS styling, which offer you hands-on experience in web desi
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences