Skip to content

Commit

Permalink
upload website
Browse files Browse the repository at this point in the history
  • Loading branch information
lks-prg committed Mar 8, 2024
1 parent e75bf2b commit e5513b4
Show file tree
Hide file tree
Showing 4 changed files with 118 additions and 0 deletions.
52 changes: 52 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vaše Profilová Stránka</title>
<link href="style.css" rel="stylesheet" type="text/css">

</head>
<body>
<div class="profile-container">
<div class="text">
<img src="logo.png" alt="Your Profile Image" class="profile-image"><br>
<div class="doplnek">Amatér co neumí nic, ale všechno najednou.</div>
<h1>My name is Lukas</h1>
</div>
<img src="profile_face.jpg" class="profile_face">

</div>
<div class="random">
<div class="skill-container">

<p>Focení</p>

<div class="skill">
<div class="skill-box">HTML</div>
<div class="skill-box">CSS</div>
<div class="skill-box">JavaScript</div>
<!-- Add more skills here -->
</div>


</div>
</div>

<div class="skill-container">

<p>Focení</p>

<div class="skill">
<div class="skill-box">HTML</div>
<div class="skill-box">CSS</div>
<div class="skill-box">JavaScript</div>
<!-- Add more skills here -->
</div>


</div>
</div>
</div>
</body>
</html>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added profile_face.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 66 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
body {
font-family: Arial, sans-serif;
background-color: #252525;
margin: 0;
padding: 0;

}
.profile-container {
max-width: 1000px;
margin: 10px auto;
padding: 20px;
background-color: #1b1b1b;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
display:flex;
}
.skill-container {
max-width: 600px;
margin: 10px auto;
padding: 20px;
background-color: #1b1b1b;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.profile-image {
width: 150px;
height: 150px;
object-fit: cover;

}
.profile_face {
width: 500px;
height: 500px;
object-fit: cover;
margin-left: 100px;
}
.skill {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.skill2 {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 100px;
}
.skills{
margin-top: 10px;
}
.skill-box {
background-color: #f2f2f2;
padding: 10px;
border-radius: 5px;
font-size: 14px;
}
.doplnek{
margin-bottom: 0px;
margin-top: 220px;
color: #006f77;
font-size: 20px;
}
h1{
color:beige;
font-size: 45px;
}

0 comments on commit e5513b4

Please sign in to comment.