html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1><center>CSS</center></h1>
<hr>
<p>CSS is for styling<br>Border= border : ?px solid color;<br>Border-radius:<br>color:???;<br>width:?px;<br>height:?px;
</p>
<h2><big><center>HTML</center></big></h2>
<hr>
<p>HTML is the main<br>h1-h6 is size<br>p or pre is text <br> br is to break the text<br>input type=???:<br>text to make text<br>password to make password<br>email to make emails<br>radio to make selection<br><br>a href=?link? to make a link</p>
</body>
</html>
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
body {
background-color:black;
}
h1{
color:aqua;
border:3px solid aqua;
border-radius:20px;
}
h2{
color:orange;
border:3px solid orange;
border-radius:20px;
}
p{
color:white
}
Enter to Rename, Shift+Enter to Preview
js
js
1
alert ("tutorial for you")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run