US18-Implement HTML5 tag for video and audio file to page.

Description

As a developer, I want to add some multimedia content so that users are able to easily understand our services and feel relax when they are reading 'about us'.

Acceptance Criteria

- Team reviewed and approved the pages design.

- Team reviewed and approved the multimedia content (the video file and audio file).

Tasks

- Team approve -- 30 mins discuss -- Team

- Convert the video file to *.mp4 file and upload it to server. -- 30 mins -- Weisi

- Convert the audio file to *.mp3 file and upload it to server. -- 30 mins -- Weisi

- Add the video and audio tags to the templates html file. -- 30 mins -- Weisi

Notes

<1> audio tag

<audio autoplay="autoplay" controls="controls"> <source src="Evening Song.mp3" type="audio/mp3"> Your browser does not support this audio format. </audio>

<2> video tag

<video width="1000" height="600" autoplay="autoplay" controls="controls"> <source src="Hotel Supplies.mp4" type="video/mp4"> Your browser does not support the video tag. </video> The audio page
The video page