-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project 2.html
41 lines (32 loc) · 1.13 KB
/
Project 2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hindi color Vocabulary</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Colors</h1>
<h2>Learn the colors in Hindi!</h2>
<h2 class="color-title" id="red">Laal</h2>
<img class="color" src="./assets/images/red.png" alt="red" />
<h2 class="color-title" id="blue">Neela</h2>
<img src="./assets/images/blue.png" alt="blue" />
<h2 class="color-title" id="orange">Kesariya</h2>
<img src="./assets/images/orange.png" alt="orange" />
<h2 class="color-title" id="green">Haraa</h2>
<img src="./assets/images/green.png" alt="green" />
<h2 class="color-title" id="yellow">Peela</h2>
<img src="./assets/images/yellow.png" alt="yellow" />
</body>
</html>
<!--
TODOs
IMPORTANT: You should not need to make ANY CHANGES to index.html
All code should be written in your CSS file.
1. Create a CSS file and incorporate it as an external stylesheet.
4. Use CSS (not HTML) to make all the images 200px heigh and 200px wide.
Hint:
https://developer.mozilla.org/en-US/docs/Web/CSS/height
https://developer.mozilla.org/en-US/docs/Web/CSS/width
-->