How to create a stylish Banner

Sona - Jan 9 - - Dev Community

Stylish Banner #coding #programminglanguage #javascripttutorial #css #html #coding #programming - YouTube

learn how to create a stylish banner @CodesBro @BeginnersCoding92

favicon youtube.com

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Stylish Banner</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <div class="banner">
    <h1>Welcome</h1>
    <p>Explore the World of Style</p>
  </div>
</body>
</html>

Enter fullscreen mode Exit fullscreen mode
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
}

.banner {
  text-align: center;
  padding: 20px;
  background-color: #3498db;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2em;
}

Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player