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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel = "stylesheet" href="skill.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://fonts.googleapis.com/css2?family=Merienda+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
</head>
<body>
<div class="container">
<div class="sidebar">
<nav>
<ul id="MenuItems">
<li><a href="">Home</a></li>
<li><a href="">Intro</a></li>
<li><a href="">Contact</a></li>
<li><a href="">CV</a></li>
</ul>
</nav>
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
body {
background-color: #000;
background:url("https://dl.dropbox.com/s/0v5ftvv2q0ygc38/1184372.jpg");
}
.sidebar{
display:flex;
padding:20px;
align-items:center
}
nav{
flex: 1;
text-align:right;
}
nav ul{
display:inline-block;
list-style-type: none;
}
.menu-icon{
display:none;
}
.container p{
color: #fff;
}
nav ul li{
display:inline-block;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run