diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-12 07:28:38 +0000 |
commit | 9742a84daa3f6b8f076955a015022ba2fa3fd443 (patch) | |
tree | bb430e60e07669aad67e8d2ad51a693acd36c892 /09/question.txt | |
parent | rescue 8 (diff) | |
download | html-9742a84daa3f6b8f076955a015022ba2fa3fd443.tar html-9742a84daa3f6b8f076955a015022ba2fa3fd443.tar.gz html-9742a84daa3f6b8f076955a015022ba2fa3fd443.tar.bz2 html-9742a84daa3f6b8f076955a015022ba2fa3fd443.tar.xz html-9742a84daa3f6b8f076955a015022ba2fa3fd443.zip |
rescue 9
Diffstat (limited to '09/question.txt')
-rw-r--r-- | 09/question.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/09/question.txt b/09/question.txt new file mode 100644 index 0000000..ad6b8ca --- /dev/null +++ b/09/question.txt @@ -0,0 +1,24 @@ +Question: +In this assignment, you added a video element and made it +accessible by including captions and descriptions files. +Is it possible to style captions? Research to find your +answer and include an example of your findings. + +Answer: +Yes it is possable to style video captions. This is +done from the .vtt file or via an external CSS file. + +.vtt example: + +6 +00:29.000 --> 00:31.500 position:64%,line-right align:center size:32% +Prince’s hooves are in <b>bad</b> shape. + + +CSS example: + +::cue{ + color: #EEBB99; + background: #000000; + font-family: sans-serif; +} |