Skip to content

Commit

Permalink
sigma
Browse files Browse the repository at this point in the history
  • Loading branch information
oliik2013 and EXC5pl committed Jun 11, 2024
1 parent 2e06d22 commit 580ab9f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
</head>
<body>
<main>
<h1>Strona największych sigmasów (:</h1>
<h2>Strona największych sigmasów (:</h1>
<button onclick="film1()">Sigmowy filmik 1</button>
<button onclick="sigmy()">Lista Sigm</button>
<img src="favicon.ico" alt="Sigma Male" />
</main>
<script src="index.js"></script>
Expand Down
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
function film1() {
window.location.href = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ';
}
function sigmy() {
window.location.href = 'sigmy.pl';
}
19 changes: 19 additions & 0 deletions sigmy.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Lista Sigm</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<main>
<h2>Sigmy:</h1>
<p>Franek</p>
<p>Szymon</p>
</main>
<script src="index.js"></script>
</body>
</html>
6 changes: 5 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ body {
h1, h2, h3, h4, h5, h6 {
color: #FFFFFF; /* White headings */
margin: 0.5em 0;

}

p {
Expand Down Expand Up @@ -63,10 +64,13 @@ header, footer {
}

.card {
background-color: #1C1C1C; /* Card background */
background-color: #ffffff; /* Card background */
color: #E0E0E0; /* Card text color */
padding: 20px;
margin: 10px 0;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.img {
padding: 50px
}

0 comments on commit 580ab9f

Please sign in to comment.