Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
nav
a
{
display:
inline-block
;
background:
#1c87c9
;
margin-right:
-4
px
;
color:
white
;
font-weight:
bold
;
text-decoration:
none
;
font-size:
25
px
;
}
</
style
>
</
head
>
<
body
>
<
nav
>
<
a
href=
"#"
> W </
a
>
<
a
href=
"#"
> 3</
a
>
<
a
href=
"#"
> docs</
a
>
</
nav
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <style> nav a { display: inline-block; background: #1c87c9; margin-right: -4px; color: white; font-weight: bold; text-decoration: none; font-size: 25px; } </style> </head> <body> <nav> <a href="#"> W </a> <a href="#"> 3</a> <a href="#"> docs</a> </nav> </body> </html>