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
<!-- Author : Jason M. Azizi -->
<!-- About : My Profile -->
<!-- Date : 2019/4/01 -->
<!-- version: 1.0 -->
<!--
This All Code Is Made By Me, Nothing Is Copied In The Mean Time There Are Some Blogs Which Are Copied From The HTML Lesson! -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Profile</title>
<!--Meta Info-->
<meta charset="utf-8" />
<meta http-equiv="Description" Content="This Website is all about my profile" />
<meta http-equiv="Author" Content="Jason M.Azizi" />
<meta name="Content-language" Content="EN-US" />
<meta name="veiwport" Content="width=device-width, intial-scale="1.0" />
<!--End Of Meta Info-->
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
/* Made By : Jason M. Azizi */
/*
This All Code Is Made By Me, Nothing Is Copied In The Mean Time There Are Some Blogs Which Are Copied From The HTML Lesson! */
html{
margin: 0;
padding: 0;
}
head{
a link: black;
blink: black;
}
body{
font-size: 13pt;
background-color: #ccc;
padding: 10px;
margin: 0;
}
.name{
font-family: 'nosifer';
font-size: 25px;
color: white;
text-align: center;
padding: 10px auto;
margin: 10px auto;
}
.img{
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
// Made By: Jason M. Azizi
//This All Code Is Made By Me, Nothing Is Copied In The Mean Time There Are Some Blogs Which Are Copied From The HTML Lesson!
alert("Welcome To My Blog.")
alert("Don't Forget To Like, Share & Comment !!!")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run