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>Home</title>
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
</head>
<body>
<header>
<p class="header">Astro</p>
<div class="container">
<button class="btn btn1">Launch History</button>
<button class="btn btn2">Rockets</button>
<button class="btn btn3">Book a launch</button>
</div>
</header>
<p class="word">Astro</p>
<img src="https://www.gstatic.com/earth/social/00_generic_facebook-001.jpg" alt"ERROR. Reload page" height="300px" width="100%" class="img" />
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 {
margin:0;
padding:0;
background-color: black;
color: white;
}
.header {
background-color: blue;
color: white;
position:fixed;
left:0;
top:-56px;
width:100%;
font-size:50px;
font-family:'Oswald';
z-index:3;
}
.footer {
position:fixed;
margin-bottom:0;
bottom:0px;
left:0;
width:613px;
font-family:'Oswald';
background-color: #D3D3D3;
color: black;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
alert("This webpage was designed for PC and laptops")
alert("It will not look right on a phone!")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run