From 86a343fe38d91b3c8887603c26385b60b60a3fb4 Mon Sep 17 00:00:00 2001 From: camblackburn <camron.blackburn@cba.mit.edu> Date: Thu, 10 Sep 2020 15:25:00 -0400 Subject: [PATCH] clean up --- fancier/index.html | 5 +++-- simple/index.html | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/fancier/index.html b/fancier/index.html index e890489..af0cce4 100644 --- a/fancier/index.html +++ b/fancier/index.html @@ -38,8 +38,9 @@ <div class="main-text"> - now you get fancy with with a css style script and <code><div></code> - tags which allow you to define blocks with sepcific styles on the html page ! + now you can add javascript for animations or embedded functions by + calling a <code><script></code> tag in your html file that points to + another javascript file ! <br><br> diff --git a/simple/index.html b/simple/index.html index 5f9951e..36cc7d8 100644 --- a/simple/index.html +++ b/simple/index.html @@ -77,7 +77,7 @@ <code>< img src="path/to/img_file.jpg" alt="alternative text description" width="500" height="600"></code> <br><br> - <img src="sample.jpg" alt="example image" height="400"> + <img src="../media/sample.jpg" alt="example image" height="400"> <br><br> or videos with <code><video></code> tag <br><br> @@ -87,7 +87,7 @@ </video></code> <br><br> <video width="320" height="240" controls> - <source src="sample.mp4" type="video/mp4"> + <source src="media/sample.mp4" type="video/mp4"> Your browser does not support the video tag. </video> <br><br> -- GitLab