Untitled
5 years ago by josiah in Plain Text
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,inital-scale=1.0'>
<title>HTML Video and Audio</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?
family=Nunito:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>HTML Video and Audio</h1>
<div class="wrapper">
<h2>Video Example</h2>
<video controls>
<source src="https://www.youtube.com/embed/XGSy3_Czz8k">
</video>
<h2>Audio Example</h2>
<audio controls>
<source src="http://treehouse-code-samples-samples.s3.amazonaws.com/html-
video-and-audio/bridge.mp3" type="video/mp3">
</ausio>
</div>
</body>
</html>