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
<!--
Made by Bono
29/11/2018 -->
<!-- Last updated 23/12/2018 -->
<!DOCTYPE html>
<html>
<head>
<title>Learn more</title>
</head>
<body>
<header>
<h1>
<link href="https://fonts.googleapis.com/css?family=Bungee+Inline" rel="stylesheet">
<font face="Bungee Inline">What to learn next </font>
</h1>
</header>
<h2>Web Development</h2>
<article>
<li> Frist you must learn <a href="https://www.sololearn.com/Course/HTML/?ref=app"><b>HTML</b> </a>. HTML stands for HyperText Markup Language , it is the basic language for making any website .</li><br /> <li> After HTML you should learn <a href="https://www.sololearn.com/Course/CSS/?ref=app"><b>CSS</b> </a>, it stands for Cascading style sheet , we use it to style our website and make it looks more beutiful and organized .</li> <br/> <li> <a href="https://www.sololearn.com/Course/JavaScript/?ref=app"> <b>JavaScript </b> </a>enables interactive web pages and thus is an essential part of web applications. The vast majority of websites use it,and all major web browsershave a dedicated JavaScript engine to execute it.</li> <br />
<li> <a href="https://www.sololearn.com/Course/PHP/?ref=app"><b>PHP</b> </a>enables you to make a database for your website , this will help you to store the website's data and client data . you can make sign up , sign in , store client information and much more .</li>
</article>
<h2>Program Games</h2>
<article>
<li><b>Unity Engine :</b> If you want to develop games on Unity learn <a href="https://www.sololearn.com/Course/CSharp/?ref=app"> <b>C#</b> </a>. Unity also is multi platform.</li>
<li><b>Unreal Engine :</b> To develop a game in Unreal you should study <a href="https://www.sololearn.com/Course/CPlusPlus/?ref=app"> <b>C++</b> </a>.</li>
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:3px;
background-color: white;
}
header {
font-family:"castellar" , arial;
background-color: darkblue;
color: white;
border:solid black;
border-style:double ;
border-width:5px;
text-align:center ;
padding:3px;
border-radius:0px 0px 0px 0px;
animation-name: colorchange;
animation-duration: 3s ;
animation-iteration-count:infinite;
-webkit-animation-name: colorchange;
-webkit-animation-duration: 3s ;
-webkit-animation-iteration-count:infinite ;
}
@keyframes colorchange {
0% {background-color: skyblue; }
50% {background-color: blue; }
100% {background-color: darkblue; }
}
@-webkit-keyframes colorchange {
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
// Made by Bono
// Don't copy
alert ("know what to learn for what you want to do. I hope it helps ☺");
alert ("Click on the bold words to take you to the course .");
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run