diff --git a/Frontend/Home.html b/Frontend/Home.html index a3d1cfc..40af546 100644 --- a/Frontend/Home.html +++ b/Frontend/Home.html @@ -42,7 +42,7 @@

Revolutionizing
Video Editing

placeholder: false, theme: 'snow' }); - editor.root.innerHTML = '

What do we do?

'; + editor.root.innerHTML = '

Using the latest AI technology, we provide an innovative way to edit your videos.

'; diff --git a/Frontend/video-editing.css b/Frontend/video-editing.css index 3eba17b..0bc6d62 100644 --- a/Frontend/video-editing.css +++ b/Frontend/video-editing.css @@ -203,6 +203,17 @@ nav ul li a{ margin-bottom: 20px; } +#transcript p{ + font-size: 24px; + font-weight: bold; + transition: 0.32s; +} + +#transcript p:hover{ + color: #00d199; + font-size: 28px; +} + /* .transcript-textarea { width: 100%; height: 80%; diff --git a/Frontend/video-editing.html b/Frontend/video-editing.html index 40dadc7..dddedbb 100644 --- a/Frontend/video-editing.html +++ b/Frontend/video-editing.html @@ -25,7 +25,7 @@ - - + + diff --git a/Frontend/video-editing.js b/Frontend/video-editing.js index 9939d44..37ea496 100644 --- a/Frontend/video-editing.js +++ b/Frontend/video-editing.js @@ -1,3 +1,14 @@ +let transcriptArea = document.getElementById("transcript"); +let transcriptHTML = ` ` + +for (let i =0; i<10; i++){ + transcriptHTML += `

Testing for the length of the transcript container.

` +} +console.log(transcriptHTML); +transcriptArea.innerHtml = "

Hello world

"; +console.log(transcriptArea.innerHtml); + + // This script deals with adding functionality to the transcript, and all other features on the site var transcript = document.getElementById("transcript");