Skip to content

Commit

Permalink
Merge pull request #2 from nxs-neo/main
Browse files Browse the repository at this point in the history
KKR first commit
  • Loading branch information
niranjan-official authored Apr 7, 2024
2 parents bdf8c93 + ab82bf6 commit 5467435
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 2 deletions.
Binary file added kkr/assets/fonts/Boulevard Saint Denis.ttf
Binary file not shown.
Binary file not shown.
Binary file added kkr/assets/fonts/Corporation Games.otf
Binary file not shown.
Binary file added kkr/assets/fonts/Sarabun-Regular.ttf
Binary file not shown.
1 change: 1 addition & 0 deletions kkr/assets/images/knight-riders-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added kkr/assets/kkr.js
Empty file.
74 changes: 74 additions & 0 deletions kkr/kkr.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
:root{
--gold: #b3a123;
--purple: #3c2357;
}

@font-face {
font-family: "Corporation";
src: url(./assets/fonts/Corporation\ Games.otf);
font-style: italic;
}

@font-face {
font-family: "Corporation";
src: url(./assets/fonts/Corporation\ Games\ Straight.otf);
font-style: normal;
}

@font-face{
font-family: "Boulevard";
src: url(./assets/fonts/Boulevard\ Saint\ Denis.ttf);
}

@font-face{
font-family: "Sarabun";
src: url(./assets/fonts/Sarabun-Regular.ttf);
}

body {
width: 100vw;
height: 100vh;
background-color: var(--purple);
color: var(--gold);
padding: 1rem;
font-family: "Sarabun";
font-weight: 900;
font-size: 1.2rem;
text-decoration: no;
padding: 0;
margin: 0;
box-sizing: border-box;
}

.header{
width: 100%;
font-size: 1rem;
align-items: center;
justify-content: baseline;
box-sizing: border-box;
padding: 1%;
padding-left: 0;
display: flex;
}

.logo{
width: 100%;
}

.logoName{
font-family: "Boulevard";
font-size: 5rem;
text-wrap: nowrap;
padding: 1%;
}

.gallery{
display: flex;
flex-direction: row;
}

.gallery-img{
max-width: 55%;
max-height: 100%;
margin: 1%;
}
19 changes: 17 additions & 2 deletions kkr/kkr.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,24 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="kkr.css">
<title>KKR</title>
<title>Kolkata Knight Riders</title>
</head>
<body>
<h1>Kolkata Knight Riders</h1>
<div class="header">
<a href="/index.html"><img class="logo "src="./assets/images/knight-riders-logo.svg" alt="kkr logo"></a>
<h1 Class="logoName">Kolkata Knight Riders</h1>
</div>
<div class="gallery">
<img class="gallery-img" src="https://images.news18.com/ibnlive/uploads/2024/04/0d93a78f-59c5-4a68-b36f-cd6fd7bf392e-fotor-20240403231015-2024-04-d4b6874e6d702a46634cf7f524c76745.jpg?impolicy=website&width=640&height=480">
<img class="gallery-img" src="https://ss-i.thgim.com/public/incoming/au16l3/article66708204.ece/alternates/LANDSCAPE_1200/_AI_8825.jpg" alt="">
</div>
<div class="yap">
<p>
Welcome to the world of Kolkata Knight Riders (KKR), a powerhouse in the Indian Premier League (IPL) with a rich history of triumphs and legendary feats!
Since their inception in 2008, KKR has dazzled fans with their iconic purple and gold colors, symbolizing passion and glory.
Led by legendary players like Gautam Gambhir and boasting stars like Shubman Gill, Andre Russell, and Pat Cummins,
KKR has etched its name in cricketing history with championship wins and thrilling performances.
</p>
</div>
</body>
</html>

0 comments on commit 5467435

Please sign in to comment.