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>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="color.css">
<title>amal's website</title>
</head>
<body>
<div class="container">
<div class="nav">
<div class="logo">
<img src="logo.jpg" alt="picture of our logo">
</div>
<div class="nav_bar">
<ul>
<li><a href="">home</a></li>
<li><a href="">about</a></li>
<li><a href="">potfolio</a></li>
<li><a href="">contact</a></li>
</ul>
</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
body {
background-color: yellow;
color: white;
}
.container {
border:3px solid yellow;
/*color: red;*/
width:75vh;
height: 100vh;
margin: 0 auto;
}
.nav {
border:1px solid white;
width: 100px;
}
.nav_bar{
float: right;
}
.nav_bar ul li{
float: left;
}
.logo {
float: left;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run