0% found this document useful (0 votes)
9 views6 pages

HTML Merged

The document consists of multiple HTML pages featuring a music-themed website with navigation links to home, audio, video, and YouTube sections. Each page includes audio or video elements, along with motivational quotes and headers related to music and artificial intelligence. The website is styled with CSS for a visually appealing layout, including a background image and responsive design elements.

Uploaded by

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

HTML Merged

The document consists of multiple HTML pages featuring a music-themed website with navigation links to home, audio, video, and YouTube sections. Each page includes audio or video elements, along with motivational quotes and headers related to music and artificial intelligence. The website is styled with CSS for a visually appealing layout, including a background image and responsive design elements.

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="[Link]">

</head>
<body>
<nav class="navbar">
<h1 class="logo">music</h1>
<ul class="nav-links">
<li><a href="[Link]">Home</a></li>
<li><a href="[Link]">audio</a></li>
<li><a href="[Link]">video</a></li>
<li><a href="[Link]">youtube</a></li>

</ul>

</nav>
<header>
<div class="header-content">

<audio controls autoplay>


<source src="/Kalimba.mp3" type="audio/mp3">
</audio>
<h1>“Without music, life <br>would be a blank to me.”</h1>
<div class="line"></div>

</div>
</header>

</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="[Link]">

</head>
<body>
<nav class="navbar">
<h1 class="logo">music</h1>
<ul class="nav-links">
<li><a href="[Link]">Home</a></li>
<li><a href="[Link]">audio</a></li>
<li><a href="[Link]">video</a></li>
<li><a href="[Link]">youtube</a></li>

</ul>
</nav>
<!-- header -->
<header>
<div class="header-content">

<h1>Discove and share your perfect sound.


</h1>
<div class="line"></div>

</div>
</header>
</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="[Link]">
</head>
<body>
<nav class="navbar">
<h1 class="logo">music</h1>
<ul class="nav-links">
<li><a href="[Link]">Home</a></li>
<li><a href="[Link]">audio</a></li>
<li><a href="[Link]">video</a></li>
<li><a href="[Link]">youtube</a></li>

</ul>

</nav>
<header>
<div class="header-content">
<h1>what is artificial intelligency</h1>
<iframe width="560" height="315"
src="[Link] &autoplay=1" title="YouTube video
player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope;
picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen></iframe>
</iframe>
</div>
</header>

</body>
</html>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="[Link]">

</head>
<body>
<nav class="navbar">
<h1 class="logo">music</h1>
<ul class="nav-links">
<li><a href="[Link]">Home</a></li>
<li><a href="[Link]">audio</a></li>
<li><a href="[Link]">video</a></li>
<li><a href="[Link]">youtube</a></li>

</ul>

</nav>
<header>
<div class="header-content">
<h1>watch this video and enjoy</h1>
<div class="line"></div>

<video controls loop autoplay >


<source src="flower.mp4" type="video/mp4">
<track src="[Link]" kind="subtitles" srclang="en" label="English">

</video>

</div>
</header>

</body>
</html>

*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,html{
overflow-x: hidden;

}
a{
text-decoration: none;
color: whitesmoke;
}
ul{
list-style: none;
}

.navbar{
position: absolute;
display: flex;
top: 0;
left: 0;
width: 100%;
justify-content:space-between ;
color: whitesmoke;
padding: 20px ;
}
.nav-links{
display: flex;
align-items: center;
}
.nav-links li{
margin: 0 30px;

header{
width: 100vw;
height: 100vh;
background-image:url([Link]);
background-position: bottom;
background-color: rgb(45, 38, 38);
background-blend-mode: overlay;
background-size: cover;
display: flex;
align-items: flex-end;
justify-content: center;
}
.header-content{
margin-bottom: 100px;
color: whitesmoke;
text-align: center;

.line{
width: 130px;
height: 4px;
background-color:rgb(182, 9, 44);
margin: 10px auto;
border-radius: 5px;
}
.header-content h1{
font-size: 9vmin;
margin-top: 50px;
margin-bottom: 30px;
}
video{
width: 70%;
height: 70%;
border: 10px groove white;
}
iframe{
border: 10px groove white;
}

You might also like