Jelajahi Sumber

Some calculations

pocu46 4 tahun lalu
melakukan
341d46ac81
3 mengubah file dengan 81 tambahan dan 0 penghapusan
  1. 29 0
      01/css/style.css
  2. 22 0
      01/index.html
  3. 30 0
      01/script.js

+ 29 - 0
01/css/style.css

@@ -0,0 +1,29 @@
+* {
+    margin: 0;
+    padding: 0;
+    background: #000000;
+}
+
+.content {
+    width: 100%;
+    max-width: 960px;
+    display: flex;
+    justify-content: center;
+    align-items: center;
+    flex-direction: column;
+}
+
+.content h1 {
+    font-size: 120px;
+    font-weight: 800;
+    color: #ffffff;
+    text-align: center;
+}
+
+.content p {
+    font-size: 80px;
+    font-weight: 400;
+    color: #2e2e2e;
+    margin-top: 100px;
+    text-align: center;
+}

+ 22 - 0
01/index.html

@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./css/style.css">
+    <title>Document</title>
+</head>
+<body>
+    <div class="content">
+        <h1>
+            Some JS calculations
+        </h1>
+
+        <p>
+            Also I tried to do BLUE task. 
+        </p>
+    </div>
+
+    <script src="./script.js"></script>
+</body>
+</html>

+ 30 - 0
01/script.js

@@ -0,0 +1,30 @@
+const workingHours = 8; // Number of working hours a day
+let workingDays = +prompt("Enter working days number ", ""); // Number of working days in a month
+while (workingDays == null || workingDays == "" ) {
+    alert("Working days should be a number");
+}
+
+let totalHoursInMonth = workingHours * workingDays;
+alert(`Your Total hours this month = ${totalHoursInMonth}`);
+
+let sallary = +prompt("Enter sallary you've got this month ", ""); // Sallary for month
+let rate = sallary / totalHoursInMonth; // Rate per hour
+alert(`Your rate this month was ${rate}`);
+
+
+// -----------------------------------------BLUE TASK---------------------------------------
+let login = prompt('Enter login', 'default');
+if (login == 'admin') {
+    let password = prompt('Password', 'Enter password');
+    if (password == 'qwerty') {
+        alert('Hello Admin', "background: green;");
+    } else if (password == '' || password == null) {
+        alert('Wrong password');
+    } else {
+        alert('Cancelled');
+    }
+} else if (login == null || login == '') {
+    alert('Cancelled');
+} else {
+    alert("Login is wrong", "background: red;");
+}