In 3.Style those divs!,
below is what I typed and It’s incorrect.
I see others put the height and width in the html, but I feel my css quite makes sense.
div is not like p that i need to type in texts, right? Or is it because I didn’t use class or id…?
so why can’t it work?
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>My Social Network</title>
</head>
<body>
<div></div>
<div></div>
<div></div>
</body>
</html>
and for css,
div {
display: inline-block;
margin-left: 5px;
height:100px;
width:100px;
border 2px solid black;
border-radius:100%;
}