kdsjafl
This commit is contained in:
parent
bb421002b8
commit
2f2761daed
20
css/main.css
Normal file
20
css/main.css
Normal file
@ -0,0 +1,20 @@
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body{
|
||||
padding-left: 15%;
|
||||
padding-right: 15%;
|
||||
}
|
||||
.header{
|
||||
display: flex;
|
||||
background-color: red;
|
||||
}
|
||||
.header a{
|
||||
flex-direction: column;
|
||||
background-color: blue;
|
||||
margin: 5px;
|
||||
}
|
||||
.header a .right{
|
||||
justify-content: flex-end;
|
||||
}
|
73
index.html
Normal file
73
index.html
Normal file
@ -0,0 +1,73 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Filip Rojek</title>
|
||||
<link rel="stylesheet" href="./css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<header class="header">
|
||||
<a href="#">Home</a>
|
||||
<a href="#">Projects</a>
|
||||
<a href="#">Blog</a>
|
||||
<a href="#" class="right">Contact me</a>
|
||||
</header>
|
||||
<section class="about-me">
|
||||
<h1>Vítej na mé stránce</h1>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Temporibus ea totam debitis porro, incidunt quam tempora sint, cumque cupiditate aliquid libero neque inventore. Consequuntur exercitationem temporibus vero enim, labore earum.</p>
|
||||
</section>
|
||||
<section class="projects">
|
||||
<h2>Projekty</h2>
|
||||
<div class="project">
|
||||
<div class="about-project">
|
||||
<h3>Fofrbazar</h3>
|
||||
<a href="https://www.fofrbazar.cz">link</a>
|
||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi necessitatibus sequi molestiae iste eos corrupti obcaecati voluptatibus tempora expedita libero. Consectetur, sunt voluptate. Similique, maiores magnam soluta natus animi doloremque.</p>
|
||||
</div>
|
||||
<div class="technologies">
|
||||
<ul>
|
||||
<li>Php 7.4</li>
|
||||
<li>Laravel 8</li>
|
||||
<li>MySQL</li>
|
||||
<li>Vue.js</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="source-code">
|
||||
<a href="https://github.com/fofrbazar/fb-website" class="github">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="project">
|
||||
<div class="about-project">
|
||||
<h3>Portfolio</h3>
|
||||
<a href="http://portfolio.fofrbazar.cz">link</a>
|
||||
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Earum maxime, quis enim, magni modi labore recusandae reiciendis nisi assumenda incidunt commodi quae sapiente pariatur? Recusandae, corporis minus. Eligendi, ducimus consectetur.</p>
|
||||
</div>
|
||||
<div class="technologies">
|
||||
<ul>
|
||||
<li>Node.js</li>
|
||||
<li>Express.js</li>
|
||||
<li>REST Api</li>
|
||||
<li>MongoDB</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="source-code">
|
||||
<a href="https://github.com/fofrbazar/portfolio" class="github">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<footer class="footer">
|
||||
<div class="text">
|
||||
<p>STAY CONNECTED</p>
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href="https://github.com/filiprojek">GitHub</a>
|
||||
<a href="https://linkedin.com/in/filiprojek">LinkedIn</a>
|
||||
<a href="#">Discord</a>
|
||||
<a href="https://instagram.com/fildarojku">Instagram</a>
|
||||
<a href="mailto:filip@filiprojek.cz">E-mail</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user