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>
<title>Page Title</title>
</head>
<body>
<div class="con">
<header class="logo">
<h1>logo</h1>
</header>
<nav class="text">
<a>text</a>
<a>text</a>
<a>text</a>
<a>text</a>
</nav>
<nav class="login">
<a>login</a>
<a>signin</a>
</nav>
</div>
</body>
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
.con {
display: flex;
flex-direction: row;
align-items: center;
background-color: green;
flex-wrap: wrap;
color: white;
padding: 0 20px;
}
.text {
display: flex;
justify-content: center;
flex: auto;
gap: 10px;
}
.login {
display: flex;
gap: 20px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run