Skip to content

Instantly share code, notes, and snippets.

View detkno90's full-sized avatar

NoorMuhammad(darthnoor) detkno90

View GitHub Profile
@detkno90
detkno90 / challenge.js
Created July 5, 2022 05:52
challenge project :finalGrade()
## Write a function, finalGrade(). It should:
take three arguments of type number
find the average of those three numbers
return the letter grade (as a string) that the average corresponds to
return ‘You have entered an invalid grade.’ if any of the three grades are less than 0 or greater than 100
0-59 should return: 'F'
60-69 should return: 'D'
70-79 should return: 'C'
80-89 should return: 'B'
@detkno90
detkno90 / index.html
Last active March 10, 2023 18:08
The Tea Cozy
<!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">
<link href="resources/styles.css" rel="stylesheet" type="text/css">
<title>Tea Cozy</title>
</head>
@detkno90
detkno90 / index.html
Created May 15, 2022 15:54
cheatsheetv2
<!DOCTYPE html>
<html>
<head>
<title>Website Design System</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:400,400i,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Tomorrow:400,400i,700&display=swap" rel="stylesheet">
@detkno90
detkno90 / index.html
Created May 9, 2022 17:37
Cheatsheet for codecademy project
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<head>
<title>CSS Selectors</title>