Get Some Notepad Details(Shortcut Keys, Text Area) By HTML & CSS Program

Ticker

10/recent/ticker-posts

Get Some Notepad Details(Shortcut Keys, Text Area) By HTML & CSS Program

Create a Notepad 📖 Software Interface by Coding

HTML
<!doctype html>
<html lang="en">
<head>
<title>Dropdown</title>
<link rel="stylesheet" text="text/css" href="style.css">
<body>
<div class="np">
    <ul>
<li><font size="5">File</font>
<ul>
<li>New(Ctrl+n)</li>
<li>Open(Ctrl+o)</li>
<li>Save(Ctrl+s)</li>
<li>Save As</li>
<li>Page Setup</li>
<li>Print(Ctrl+p)</li>
<li>Exit(Alt+F4)</li>
</ul>
<li><font size="5">Edit</font>
<ul>
<li>Undo(Ctrl+z)</li>
<li>Cut(Ctrl+x)</li>
<li>Copy(Ctrl+c)</li>
<li>Paste(Ctrl+v)</li>
<li>Delete(Del)</li>
<li>Find(Ctrl+f)</li>
<li>Find Next(F3)</li>
<li>Replace(Ctrl+h)</li>
<li>Goto(Ctrl+g)</li>
<li>Select All(Ctrl+a)</li>
<li>Time/Date(F5)</li>
</ul>
<li><font size="5">Format</font>
            <ul>
<li>Word Wrap</li>
<li>Font</li>
                    </ul>
<li><font size="5">View</font>
<ul>
<li>Zoom</li>
<li>Status Bar</li>
</ul>
<li><font size="5">Help</font>
<ul>
<li>View Help</li>
<li>About Notepad</li>
</ul>
</div>
</body>
</head>
</html>

CSS
*
{
margin: 0;
padding: 0;
}
body
{
background-image: url(https://images.pexels.com/photos/399161/pexels-photo-399161.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);  
-webkit-background-size:cover;
background-size:cover;
background-position: center center;
height: 100vh;
}

.np
{
width: 950px; 
margin: 0 auto;
}
.np ul
{
list-style: none;
margin-top: 0.2%;
}
.np ul li 
{
background: hidden;
width: 170px;
border: 1.5px solid #fddd;
height: 50px;
line-height: 50px;
text-align: center;
float: left;
color: #000;
font-size: 15px;
position: relative;
font-family: poppins;
text-transform: uppercase;
font-weight: bold;
}
.np ul li:hover
{
background: #ff99ff; 
}

.np ul ul
{
display: none;
}
.np ul li:hover > ul
{
display: block;
}
.np ul ul ul
{
margin-left: 70px;
top: 0;
position: relative;
}

OUTPUT




Post a Comment

49 Comments

  1. Very very very very beautiful
    Coding
    Interesting project

    ReplyDelete