html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
</head>
<body>
<h1>Computer</h1>
<div class="middle">
<div class="menu">
<li class="item" id='profile'>
<a href="#profile" class="btn">1. Fundamentals of computer</a>
<div class="smenu">
<a href="#">Test1</a>
<a href="#">Test2</a>
</div>
</li>
<li class="item" id="messages">
<a href="#messages" class="btn">2. Organisation</a>
<div class="smenu">
<a href="#">Test1</a>
<a href="#">Test2</a>
<a href="#">Test3</a>
</div>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
*{
margin: 0;
padding: 0;
font-family: sans-serif;
list-style: none;
text-decoration: none;
}
h1{
margin-top: 40px;
text-align: center;
}
.middle{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.menu{
width: 700px;
border-radius: 8px;
overflow: hidden;
margin-top: 70px;
}
.item{
border-top: 1px solid #2980b9;
overflow: hidden;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run