Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Projects/suchika/Icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions Projects/suchika/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Try Windows 11</title>
<link rel="stylesheet" href="style.css">
</head>
<body>

<div class="home"></div>
<div class="taskbar">

<div class="startmenu">
<img src="startmenu1.png" alt="">
</div>
<script src="script.js"></script>
</body>

</html>
51 changes: 51 additions & 0 deletions Projects/suchika/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
*{
margin: 0;
padding: 0;
}

/* div{
background: url('Icon.jpg') center center/cover no-repeat;
} */

.home{

background: url('Windows-11-Bloom-Screensaver-Dark-scaled.jpg') center center/cover no-repeat;
/* background-color: white; */
height: 100vh;

width: 100%;
display: flex;
justify-content: center;
}

.taskbar{
background: url('Icon.jpg') center center/cover no-repeat;
/* background-color: white; */
height: 30px;

width: 50%;
position: absolute;
bottom: 0;
display: flex;
justify-content: center;
}

.startmenu{
position: absolute;
bottom: 52;
width: 100%;
transition: all 0.3s ease-in;

}

.startmenu img{
border-radius: 23px;
}

.right{
justify-self: flex end;
position: absolute;
right: 0;
margin: 8px 0;
height: 60%;
}