Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion frontend/html5.html
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading
<!-- Image Formatting -->


<img src="url" alt="text"> <!-- Used to display images in a webpage where src="url" contains the link to the image source and alt="" contains an alternative text to display when the image is not displayed -->
<img src="url"> <!-- Used to display images in a webpage where src="url" contains the link to the image source -->

<!-- Supported attributes -->
alt="text" <!-- Contains an alternative text to display when the image is not displayed or for screen readers -->
height="" <!-- Specifies the height of the image -->
width="" <!-- Specifies the width of the image -->


<!-- List Formatting -->
Expand Down