Lecture 16(Morning)

 

assignment

Index.html

<!DOCTYPE html>

<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="css/style.css">
</head>

<body>

    <div class="rec"></div>
    <div class="rec2"></div>
    <div class="rec3"></div>
</body>

</html>


Style.css

:root {
  --PrimaryColor: blue;
  --divradius: 40%;
  --image: url('');
}

.rec {
  height: 200px;
  width: 300px;

  background-color: var(--PrimaryColor);
}

.rec2 {
  height: 400px;
  width: 400px;
  border-radius: var(--divradius);
  background-color: var(--PrimaryColor);
}

.rec3 {
  height: 600px;
  width: 600px;
  border-radius: var(--divradius);

  background-color: var(--PrimaryColor);
}

Comments