summary refs log tree commit diff
path: root/09/question.txt
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-14 03:20:53 +0000
commit588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6 (patch)
treef1dbc0e6ff59af610a6043889606a8534ef6b1d4 /09/question.txt
parentrescue 12 (diff)
downloadhtml-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar
html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.gz
html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.bz2
html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.tar.xz
html-588e25e5d0a30c25ca952ccaa1a2f1f1c92a03f6.zip
rescue
Diffstat (limited to '09/question.txt')
-rw-r--r--09/question.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/09/question.txt b/09/question.txt
deleted file mode 100644
index ad6b8ca..0000000
--- a/09/question.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-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;
-}