Skip to content

Instantly share code, notes, and snippets.

@yehonatan56
Created November 17, 2024 17:29
Show Gist options
  • Select an option

  • Save yehonatan56/db813fa1a18526377ea81897a1529b53 to your computer and use it in GitHub Desktop.

Select an option

Save yehonatan56/db813fa1a18526377ea81897a1529b53 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>סרטוני הדרכ</title>
<style>
body {
text-align: center;
font-family: Arial, sans-serif;
background-color: skyblue;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
color: #fff;
}
div {
width: 320px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<h1>סרטוני הדרכ</h1>
<div>
<video width="320" height="240" controls="">
<source src="m.mp4" type="video/mp4">
</video>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment