Designing a Unique BTS Infosite: HTML CSS

0

 

Unveiling the World of BTS: A Comprehensive Guide

A Fan's Guide to the Biggest KPOP Boy Band

Introduction

In this blog, we'll embark on a journey to design a distinctive BTS Infosite using HTML and CSS.Our BTS Infosite will be a visually appealing, user-friendly space where fans can dive deep into each member's world. It will feature a seamless blend of images, information, and interactive elements to engage and captivate visitors.

Setting the Foundation with HTML

1. Structure and Header


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>BTS Infosite</title>
    <link rel="stylesheet" href="style2.css">
</head>
<body>
    <header>
        <h1>BTS Infosite</h1>
    </header>
    <!-- More content to follow -->
</body>
</html>

  • We start by setting up the basic structure of our webpage with HTML.
  • The <header> element contains the site's title.

2. Navigation and Introduction


<nav>
    <ul>
        <li><a href="#members">Members</a></li>
        <li><a href="#music">Music</a></li>
        <li><a href="#videos">Videos</a></li>
        <li><a href="#about">About</a></li>
    </ul>
</nav>

<section id="introduction">
    <h2>Welcome to BTS Infosite!</h2>
    <p>Explore the world of BTS through in-depth profiles, music, and exclusive videos.</p>
</section>

  • We create a navigation bar with links to different sections of the site.
  • The <section> with the id introduction provides a warm welcome and brief description of the site.

Elevating the Experience with CSS

3. Unique Styling with CSS

body{
  text-align: center;
  background: linear-gradient(90deg,#DF98FA 25%, #9055FF 100%,#DF98FA 25%);
}

.ot7{
  border-style:solid;
  border-color:#190C29;
  border: 1px
  border-radius: 80px;
  padding: 5px;
}

h1{
  font-family: 'Rampart One', cursive;
  font-size: 4em;
  color: #26192F;
}

h2{
  font-family: 'Rampart One', cursive;
  font-size: 2em;
}

h3{
 font-family: 'Signika', sans-serif;
  font-size: 1.5em;
}

p{
  font-family: 'Patrick Hand', cursive;
  font-size: 1.2em;
}

.images{
  width: 700px;
  height: 500px;
  border-style:solid;
  border-color:#190C29;
  border: 1px
  border-radius: 80px;
  padding: 5px;
  //margin-right: 600px;
}

footer {
  background: #402565;
  color:  #fff;
  text-align: center;
  padding:0.01%;
  font-size: 1em;
}

hr.copyright{
 opacity:0.10;
}

.links a {
    font-family: 'Patrick Hand', cursive;
    color: Violet;
}

.logo{
  height: 400px;
  width 300px
}

.Lightstick{
  height: 400px;
  width 300px
}



SOURCE CODE👇TAP

Conclusion:

With a blend of HTML for structure and CSS for style, we've created a unique BTS Infosite. This site aims to captivate fans with engaging content and a visually appealing design. The use of interactive elements adds an extra layer of immersion, making it a delightful experience for any BTS enthusiast.

Now it's your turn! Customize and add more features to make it truly your own. Happy designing!

Remember to replace placeholders like [Your Name] and bts-background.jpg with your own content.

Happy coding and enjoy celebrating BTS! 🎉



Post a Comment

0Comments

Please Select Embedded Mode To show the Comment System.*