Last active
October 13, 2020 12:35
-
-
Save saipraveen-a/d39170087807670d2298295bacc47634 to your computer and use it in GitHub Desktop.
HTML & CSS Challenges - Image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML Challenge - Fix This Image</title> | |
</head> | |
<body> | |
<img src="https://images.unsplash.com/photo-1441974231531-c6227db76b6e?&w=400" alt="Trees in a forest"> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>HTML Challenge - Fix This Image</title> | |
</head> | |
<body> | |
<img src="images.unsplash.com/photo-1441974231531-c6227db76b6e?&w=400"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment