Created
November 17, 2024 17:29
-
-
Save yehonatan56/db813fa1a18526377ea81897a1529b53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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