fix: correct link to stylesheets

This commit is contained in:
supminn 2022-10-09 16:36:53 +05:30
parent 5c684a086d
commit 74c848ce92
1 changed files with 29 additions and 42 deletions

View File

@ -1,44 +1,31 @@
<!-- https://github.com/atapas/html-tips-tricks/pull/9 -->
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>HTML Tips and Tricks - Datalist Tag</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="./src/styles.css"
/>
</head>
<body> <head>
<div class="demo"> <meta charset="utf-8" />
<a href="../index.html" class="home"> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<img src="../home.svg" alt="home" /> <title>HTML Tips and Tricks - Datalist Tag</title>
</a> <meta name="viewport" content="width=device-width, initial-scale=1" />
<h1>Audio Tag</h1> <link href="https://fonts.googleapis.com/css2?family=Chilanka&display=swap" rel="stylesheet" />
<audio controls> <link rel="stylesheet" type="text/css" media="screen" href="../main.css" />
<source </head>
src="https://sample-videos.com/audio/mp3/crowd-cheering.mp3"
type="audio/mp3" <body>
/> <div class="demo">
Your browser does not support the audio element. <a href="../index.html" class="home">
</audio> <img src="../home.svg" alt="home" />
<h1>Video Tag</h1> </a>
<video width="300" height="200" controls> <h1>Audio Tag</h1>
<source <audio controls>
src="https://download.samplelib.com/mp4/sample-5s.mp4" <source src="https://sample-videos.com/audio/mp3/crowd-cheering.mp3" type="audio/mp3" />
type="video/mp4" Your browser does not support the audio element.
/> </audio>
Your browser does not support the video element. <h1>Video Tag</h1>
</video> <video width="300" height="200" controls>
</div> <source src="https://download.samplelib.com/mp4/sample-5s.mp4" type="video/mp4" />
</body> Your browser does not support the video element.
</html> </video>
</div>
</body>
</html>