0% found this document useful (0 votes)
11 views3 pages

Banner Program

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views3 pages

Banner Program

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

BANNER PROGRAM

<html lang="en">

<head>

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>My Banner</title>

<style>

body {

margin: 0;

font-family: Arial, sans-serif;

.banner {

background-color: #4CAF50;

color: white;

padding: 15px;

text-align: center;

.banner h1 {

margin: 0;

</style>

</head>

<body>

<div class="banner">

<h1>Welcome to My Website</h1>

<p>Your tagline here</p>

</div>

</body>

</html>
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Image Banner</title>

<style>

body {

margin: 0;

font-family: Arial, sans-serif;

.banner {

position: relative;

text-align: center;

color: white;

.banner img {

width: 100%;

height: auto;

.banner-text {

position: absolute;

top: 50%;

left: 50%;

transform: translate(-50%, -50%);

background-color: rgba(0, 0, 0, 0.5);

padding: 20px;

</style>

</head>
<body>

<div class="banner">

<img src="your-image-url.jpg" alt="Banner Image">

<div class="banner-text">

<h1>Welcome to My Website</h1>

<p>Your tagline here</p>

</div>

</div>

</body>

</html>

You might also like