Skip to content

Commit f4fe78e

Browse files
committed
A Small Change To Fix Broken Website
1 parent f3826ef commit f4fe78e

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ coverage
2020
# nyc test coverage
2121
.nyc_output
2222

23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-Files)
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
2424
.grunt
2525

2626
# Bower dependency directory (https://bower.io/)

404.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="stylesheet" href="CSS/error.css">
88
<link rel="icon" href="Files/warning.png">
99
<link rel="preconnect" href="https://fonts.gstatic.com">
10-
<link href="https://fonts.googleapis.com/CSS2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
10+
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
1111
<title>There was an Error 404</title>
1212
</head>
1313
<body class="no-script">
@@ -21,7 +21,7 @@ <h1 class="error-number">404</h1>
2121
</div>
2222
<script>document.body.classList.remove("no-script");</script>
2323
<noscript>
24-
<link href="https://fonts.googleapis.com/CSS2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
24+
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
2525
<div class="err">
2626
<h2>There was an error</h2>
2727
<p>Sorry, but your browser doesn't support Javascript.<br> Please enable JavaScript in your browser for best experience for website.</p>

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Please note we have a code of conduct, please follow it in all your interactions
1111
build.
1212
2. Update the README.md with details of changes to the interface, this includes new environment
1313
variables, exposed ports, useful file locations and container parameters.
14-
3. Increase the version numbers in any examples Files and the README.md to the new version that this
14+
3. Increase the version numbers in any examples files and the README.md to the new version that this
1515
Pull Request would represent.
1616
4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you
1717
do not have permission to do that, you may request the second reviewer to merge it for you.

CSS/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ section{padding: 100px 0;background: #fff;}
5656
.skill-info{display: flex;justify-content: space-between;}
5757
.skill-bar{height: 3px;background: #ddd;margin-top: 14px;position: relative;}
5858
.skill-bar::after{height: 6px;background-color: #1dd1a1;bottom: 0;}
59-
.html::after,.css::after,.js::after,.react::after,.sCSS::after{width: 90%;}.angular::after{width: 75%;}
59+
.html::after,.css::after,.js::after,.react::after,.scss::after{width: 90%;}.angular::after{width: 75%;}
6060
section.alt{background-color: #f1f1f1;}section.alt .section-title::after{border: 4px solid #f1f1f1;}
6161
.services{display: flex;justify-content: space-between;flex-wrap: wrap;}
6262
.service{width: calc(33% - 20px);text-align: center;border: 1px solid #0d5a45;border-radius: 5px;margin: 20px 0;padding: 40px 20px;color: #0d5a45;cursor: pointer;transition: .4s ease-in-out;}

JS/functions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
const skillData = [
22
{name:"HTML",class:"html",percentage:90},
3-
{name:"CSS",class:"CSS",percentage:90},
3+
{name:"CSS",class:"css",percentage:90},
44
{name:"Javascript",class:"js",percentage:90},
55
{name:"React JS",class:"react",percentage:90},
6-
{name:"SASS (SCSS)",class:"sCSS",percentage:90},
6+
{name:"SASS (SCSS)",class:"scss",percentage:90},
77
{name:"Angular",class:"angular",percentage:75}
88
]
99
const serviceData = [
@@ -24,7 +24,7 @@ const worksData = [
2424
]
2525
const removeCss = ()=>document.querySelector("link[href='CSS/dark-mode.css']").remove();
2626
const redirectTo = (link) => document.location=link;
27-
function lazyCss(e) {const t = document.createElement( "link" );t.href = e, t.rel = "stylesheet", t.type = "text/CSS", t.media="screen", document.getElementsByTagName("head")[0].appendChild(t);}
27+
function lazyCss(e) {const t = document.createElement( "link" );t.href = e, t.rel = "stylesheet", t.type = "text/css", t.media="screen", document.getElementsByTagName("head")[0].appendChild(t);}
2828
function handleScroll(scrlY, pageY){scrlY < this.scrollY ? navbar.classList.add("sticky") : navbar.classList.remove("sticky");window.scrollY > pageY ? gotop.classList.add("active") : gotop.classList.remove("active");}
2929
function toggleActive(){toggler.classList.toggle("active"); navMenu.classList.toggle("active");}
3030
function closeMenu(){toggler.classList.remove("active"); navMenu.classList.remove("active");}

JS/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e =
1717
}
1818
});
1919
subClose.addEventListener('click',()=>subPopup.classList.add('hide'))
20-
lazyCss("https://fonts.googleapis.com/CSS2?family=Sora:wght@300;400;500;700&display=swap");init();
20+
lazyCss("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap");init();

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MIT License
33
Copyright (c) 2022 ArsenTech
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation Files (the "Software"), to deal
6+
of this software and associated documentation files (the "Software"), to deal
77
in the Software without restriction, including without limitation the rights
88
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta http-equiv="X-UA-Compatible" content="IE=edge">
88
<meta name="viewport" content="width=device-width, initial-scale=1.0">
99
<meta name="theme-color" content="#22b455">
10-
<meta name="keywords" content="arsentech, arsentech youtube, arsentech github, malware, malware testing, windows, windows experiments, tech tutorials, technology, tech, arsen tech, coding, programming, coding with arsentech, arsentech shorts, remove memz, remove 000.exe, avast vs noescape, antivirus, linux, virus testing, antimalware, ransomware, trojan, trojan malware, techonologies, html, CSS, js, coding languages, computer, computer virus, computer malware, software, more arsentech, chrome, tech tips, tech youtuber, programmer, coder, coding tips, freeware, software engineer, software coding, ms dos, operating system, normal people vs coder, normal people vs programmer, coding tutorials, pc">
10+
<meta name="keywords" content="arsentech, arsentech youtube, arsentech github, malware, malware testing, windows, windows experiments, tech tutorials, technology, tech, arsen tech, coding, programming, coding with arsentech, arsentech shorts, remove memz, remove 000.exe, avast vs noescape, antivirus, linux, virus testing, antimalware, ransomware, trojan, trojan malware, techonologies, html, css, js, coding languages, computer, computer virus, computer malware, software, more arsentech, chrome, tech tips, tech youtuber, programmer, coder, coding tips, freeware, software engineer, software coding, ms dos, operating system, normal people vs coder, normal people vs programmer, coding tutorials, pc">
1111
<link rel="apple-touch-icon" href="Files/app-icon.png">
1212
<link rel="icon" sizes="192x192" href="Files/app-icon.png">
1313
<link rel="icon" sizes="16x16" href="Files/favicon.ico">
@@ -125,7 +125,7 @@ <h2>ArsenTech</h2>
125125
<script src="JS/script.js" defer></script>
126126
<script>document.body.classList.remove("no-script");document.getElementById("yearCount").innerHTML = (new Date).getFullYear();window.addEventListener("load",()=>{const loader=document.querySelector(".loader-wrapper"); loader.className += " loader-hidden"});</script>
127127
<noscript>
128-
<link href="https://fonts.googleapis.com/CSS2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
128+
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
129129
<div class="err">
130130
<h2>There was an error</h2>
131131
<p>Sorry, but your browser doesn't support Javascript.<br> Please enable JavaScript in your browser for best experience for website.</p>

0 commit comments

Comments
 (0)