This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Mind-Overflow-Website/index.html

82 lines
2.9 KiB
HTML
Raw Normal View History

2020-07-02 12:57:43 +02:00
<!doctype html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=0">
<meta name="description" content="Welcome to Lorenzo DellacĂ 's official website: software development, web design, music, photography.">
<link href="/styles/common-style.css" rel="stylesheet" type="text/css">
2020-07-02 13:02:33 +02:00
<link href="/styles/home-style.css" rel="stylesheet" type="text/css">
2020-07-02 12:57:43 +02:00
<link rel="shortcut icon" type="image/png" href="/images/logos/brain-128.png"/>
<!-- Scripts Begin -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<title>Mind Overflow : Home</title>
<!-- Matomo -->
<script type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//admin.mind-overflow.net/matomo/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<script src="/scripts/policy-popup.js"></script>
<!-- Scripts End -->
2020-07-02 12:57:43 +02:00
</head>
<body onload="openPolicyPopup()">
<div class="policy-popup" id="policy-popup">
<h4>This website uses cookies.</h4>
<p>We use cookies to ensure you the best experience.
<br>
By using our website, you agree with our <a href="/pages/policy.html" target="_blank">Privacy Policy</a>.
</p>
<button onclick="agreePolicyPopup()">Ok, understood</button>
</div>
<div class="main" id="vantajs">
2020-07-02 12:57:43 +02:00
<h1>Lorenzo DellacĂ </h1>
<div class="bottomnav">
2020-07-02 13:02:33 +02:00
<a href="/pages/about.html">About</a>
2020-07-02 12:57:43 +02:00
<a class="rainbow" href="https://old.mind-overflow.net/career.html">Services</a>
2020-07-02 13:02:33 +02:00
<a href="/pages/contact.html">Contact</a>
2020-07-02 12:57:43 +02:00
<a href="https://cloud.mind-overflow.net/">Cloud</a>
<a href="/pages/policy.html">Policy</a>
2020-07-02 12:57:43 +02:00
</div>
</div>
2020-07-08 16:40:00 +02:00
<!-- Vanta.JS Scripts to make the background cool, but disabled on mobile -->
2020-07-02 12:57:43 +02:00
<script>
if(window.screen.width > 800)
{
document.write('<script src="/scripts/three.r95.min.js"><\/script>' +
'<script src="/scripts/vanta.net.min.js"><\/script>' +
'<script>' +
'VANTA.NET({'+
'el: "#vantajs",'+
'color: 0x3fd5ff,'+
'backgroundColor: 0x190f2b,'+
'mouseControls: true,'+
'touchControls: true,'+
'minHeight: 200.00,'+
'minWidth: 200.00,'+
'scale: 1.00,'+
'scaleMobile: 1.00'+
'})'+
'<\/script>');
}
</script>
</body>
2020-07-02 13:27:15 +02:00
</html>