Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to convert the following html into jade

Tags:

html

pug

The following is the code i want to convert to jade from html.

 <video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
 </video>

Thanks

like image 636
Program_Sauce Avatar asked Feb 02 '26 09:02

Program_Sauce


1 Answers

You can test it here: http://jade-lang.com/demo/

video(width="320", height="240", controls)
  source(src="movie.mp4", type="video/mp4")
  source(src="movie.ogg", type="video/ogg")
  |Your browser does not support the video tag.
like image 135
Sergei Beregov Avatar answered Feb 05 '26 03:02

Sergei Beregov



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!