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 charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Css/bg.css" />
</head>
<body>
<div class="container brown highlightTextOut">
<a alt="HOME">HOME</a>
<a alt="ABOUT">ABOUT</a>
<a alt="CONTACT">CONTACT</a>
</div>
<a href="page1.html">Go To Page1</a>
<br />
<a href=" https://www.google.com.lb/" >Go To Google</a>
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
@import 'https://fonts.googleapis.com/css?family=Raleway';
body{
margin: 0px;
background: gray;
}
div.container{
font-family: Raleway;
margin: 0 auto;
padding: 2em 2em;
}
div.container a{
color: #FFF;
text-decoration: none;
font: 14px Raleway;
margin: 0px 6px;
padding: 10px 10px;
position: relative;
z-index: 0;
cursor: pointer;
}
div.highlightTextOut a
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run