-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |