Skip to content

Commit

Permalink
Merge pull request #16 from AidenSorabji/skibiditoilet
Browse files Browse the repository at this point in the history
added email
  • Loading branch information
AidenSorabji authored Sep 13, 2024
2 parents d1f185c + d27dcb3 commit a5d9b61
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
29 changes: 19 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,11 @@
░▒▓█▓▒░░▒▓█▓▒░▒▓█▓▒░▒▓███████▓▒░░▒▓████████▓▒░▒▓█▓▒░░▒▓█▓▒░
</pre
>
<br />
<p>Welcome to my site!!</p>
<p>I hope you like the site so far, please take a look around!</p>
<br />
<p id="changeEffects">
Want some fancy effects? Click
<a onclick="changeEffects()">HERE</a> to turn them on.
Click
<a onclick="changeEffects()">HERE</a> to turn effects on.
</p>
</header>
<p>Some things you might be interested in:</p>
<nav id="nav_tabs">
<ul>
<li><a href="#home" class="tab_switcher" id="home_tab">Home</a></li>
Expand Down Expand Up @@ -105,7 +100,17 @@ <h2>Contacts</h2>
>
Follow me for updates on my repositories or to hire me.
</p>
<p>
->
<em
><a href="mailto:[email protected]" target="_blank"
>Email</a
></em
>
Message me to talk about hiring, business needs, etc.
</p>
</div>

<div class="grid_row_box">
<h2>Credits</h2>
<p>
Expand Down Expand Up @@ -280,8 +285,8 @@ <h2>About me</h2>
<h2>Skills</h2>
<p>-> Python <em>5+ Years Experience</em></p>
<p>-> HTML <em>2+ Years Experience</em></p>
<p>-> Java <em>6+ Months Experience</em></p>
<p>-> C++ <em>3+ Months Experience</em></p>
<p>-> Java <em>9+ Months Experience</em></p>
<p>-> C++ <em>6+ Months Experience</em></p>
</div>
</div>
<div class="grid_row">
Expand Down Expand Up @@ -323,7 +328,11 @@ <h2>Social Media</h2>
</p>
<br />
<br />
<p>Reach out to me through Github!</p>
<p>
Reach out to me through my
<a href="mailto:[email protected]" target="_blank">Email</a
>!
</p>
</div>
<div class="grid_row_box">
<h2>Computer Specs</h2>
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ let nfbText = document.getElementById('changeEffects');

// Turn off major effects on default for mobile devices
if (window.matchMedia("(max-width: 767px)").matches && !('effectsDisabled' in localStorage)) { effectsDisabled = true;}
if (!effectsDisabled) { document.head.appendChild(link); nfbText.innerHTML = 'Don\'t like the effects? Click <a onclick="changeEffects()">HERE</a> to turn them off.';}
if (!effectsDisabled) { document.head.appendChild(link); nfbText.innerHTML = 'Click <a onclick="changeEffects()">HERE</a> to turn effects off.';}

function changeEffects() {
localStorage.setItem('effectsDisabled', !effectsDisabled);
Expand Down

0 comments on commit a5d9b61

Please sign in to comment.