forked from itscodenation/int-u2l3-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code-along.html
36 lines (32 loc) · 1.5 KB
/
code-along.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
<!DOCTYPE html>
<html>
<head>
<title>Code Along</title>
<style>
/* The images on this page are too big. Let me use CSS to resize them! Code along 😊 */
/* 1. First, choose a selector. For this, I will use choose the img tag. */
/* 2. Second, put curly braces. The code to change the size will be between the opening and closing curly brace. */
/* 3. Third, put the property. What property should I use to change the size of the images? */
/* 4. Last, choose a value and end with a semicolon. This should be a number value with px - px stands for pixels.*/
</style>
</head>
<body>
<div class="navbar">
<a href="index.html">Do Now</a>
<a href="code-along.html">Code Along</a>
<a href="code-solo.html">Code Solo</a>
</div>
<h1 class="sherman">Sherman's Shoe Store</h1>
<div class="shoes">
<img src="https://i.s-madewell.com/is/image/madewell/A4552_WE7780?$pdp_fs418$">
<img src="https://media.kohlsimg.com/is/image/kohls/2958262_Black_White?wid=600&hei=600&op_sharpen=1">
<img src="https://n.nordstrommedia.com/id/sr3/2132b780-305c-4a85-857d-46a9dcde73dd.jpeg?crop=pad&pad_color=FFF&format=jpeg&trim=color&trimcolor=FFF&w=780&h=838">
</div>
<h2 class="sherman">Shoes we sell:</h2>
<ul>
<li>Vans</li>
<li>Jordans</li>
<li>Converse</li>
</ul>
</body>
</html>