This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Title: Update all ahref links old to new using jquery with regex | |
Developer: Farhan Ellahi | |
Website: www.thenanosoft.com | |
Instagram: @thenanosoft | |
--> | |
<!DOCTYPE html> | |
<html lang="en"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create calculator calling different operators with functions in javascript | |
function pow(value0, value1) { | |
return Math.pow(value0, value1); | |
} | |
function mod(value0, value1) { | |
return value0 % value1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); | |
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap'); | |
/* root color theme */ | |
:root { | |
--primary-color: #251B37; | |
--secondary-color: #372948; | |
--tertiary-color: #FFCACA; | |
--quaternary-color: #FFECEF; | |
--primary-font: 'Poppins', sans-serif; |