<!-- This is an image -->
<img src="filename.jpg" alt="Dancing Cat" title="Dancing Cat />
<!-- This is an audio file with controls -->
<audio controls>
<source src="viper.mp3" type="audio/mp3">
</audio>
<!-- This is a video file -->
<video controls width="480" height="288" >
<source src="video.mp4" type="video/mp4">
</video>
<link rel="stylesheet" type="text/css" href="style.css">
selector {
property: value;
anotherproperty: value;
Readings!
Let’s take a look at Digital Poetic part 1!
Inserting Images, Audio, and Video
<!-- This is an image -->
<img src="filename.jpg" alt="Dancing Cat" title="Dancing Cat />
<!-- This is an audio file with controls -->
<audio controls>
<source src="viper.mp3" type="audio/mp3">
</audio>
<!-- This is a video file -->
<video controls width="480" height="288" >
<source src="video.mp4" type="video/mp4">
</video>
Inserting CSS and Basic Properties
<link rel="stylesheet" type="text/css" href="style.css">
selector {
property: value;
anotherproperty: value;