Refactor js
This commit is contained in:
commit
5de596c38a
28 changed files with 859 additions and 0 deletions
48
index.html
Normal file
48
index.html
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
<meta property="og:image:width" content="1744" />
|
||||
<meta property="og:image:height" content="913" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="This is my portfolio where you can see my previous projects on a timeline."
|
||||
/>
|
||||
<meta property="og:title" content="András Schmelczer" />
|
||||
<meta property="og:url" content="https://schmelczer.dev/" />
|
||||
<meta
|
||||
property="og:image"
|
||||
content="https://schmelczer.dev/static/og-image.jpg"
|
||||
/>
|
||||
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="theme-color" content="#31343F" />
|
||||
|
||||
<title>Portfolio</title>
|
||||
|
||||
<link rel="stylesheet" href="css/main.css" />
|
||||
<link rel="stylesheet" href="css/elements.css" />
|
||||
<link rel="stylesheet" href="css/page.css" />
|
||||
</head>
|
||||
<body>
|
||||
<section class="center" id="photo-viewer">
|
||||
<img id="photo" alt="currently opened photo" src=""/>
|
||||
<div id="exit"></div>
|
||||
</section>
|
||||
|
||||
<header class="center">
|
||||
<img id="header-pic" alt="a picture of me" src=""/>
|
||||
<h1 id="name"></h1>
|
||||
</header>
|
||||
|
||||
<section id="about"></section>
|
||||
|
||||
<main id="timeline"></main>
|
||||
|
||||
<footer class="card center"><a id="email"></a></footer>
|
||||
</body>
|
||||
|
||||
<script src="js/content.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue