hello
I have a problem of uploading mp4 video file. I was literally following the video but my video file is not uploaded. I tried 3 or 4 times to upload this video. I don’t know why my video is properly uploaded. It is showing something strange characters. What should i do to upload this video. I finish this project but it is not correct as the video is not uploading. below is my code. I put the screenshot of error of video.
thanks
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<mega name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Excursion</title>
<link rel="stylesheet" type="text/css" href="resources/css/styles.css">
</head>
<body>
<h1 class="header--main">Discover hidden places in the world around you</h1>
<p><a class="link--cta" href="#">Download Excursion (Coming Soon!)</a></p>
<video autoplay loop>
<source src="resources/videos/excursion(1).mp4" type="video/mp4">
</video>
<h2 class="header--secondary">Your personal travel guide</h2>
<h4 class="header--sub-header">Excursion remembers places you like, and recommends new points of interest around you.</h4>
<p><img src="resources/images/camp.jpg"></p>
<p><img src="resources/images/phone.png"></p>
<h4 class="header--sub-header">Coming Soon for iphone and Android</h4>
<p><a class="link--cta" href="#">Download Excursion (Coming Soon!)</a></p>
<p><a class="footer--copyright">© Excursion</p>
</body>
</html>
body {
background-color: #000000;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.header--main {
font-weight: normal;
font-size: 50px;
color: #ffffff;
}
.header--secondary {
font-weight: 300;
font-size: 42px;
color: #ffffff;
}
.header--sub-header {
font-size: 21px;
color: grey;
}
.link--cta {
font-size: 16px;
color: aquamarine;
}
/*Footer*/
.footer--copyright {
font-size: 21px;
color: grey;
text-align: right;
}
