You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
771 B

5 years ago
<!DOCTYPE html>
3 years ago
<html lang="en">
5 years ago
<head>
3 years ago
<title>Solar System: Document Object Model:30 Days Of JavaScript</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap" rel="stylesheet">
5 years ago
</head>
<body>
3 years ago
<header>
<h1>Calculate a weight of an object on a planet</h1>
5 years ago
3 years ago
<input type="text" id="mass" placeholder="Mass in Kilogram" />
<select>
<option value='none'>--select planet-- </option>
</select>
<button>Calculate weight</button>
5 years ago
3 years ago
</header>
<main>
<div class="flex-container">
<div class="flex-item image">
<img src='./images/earth.png' class="planet-image" />
</div>
<div class="flex-item description"></div>
5 years ago
3 years ago
</div>
5 years ago
3 years ago
</main>
5 years ago
3 years ago
<script src="./scripts/main.js"></script>
5 years ago
</body>
</html>