-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEndPage.html
52 lines (47 loc) · 1.4 KB
/
EndPage.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Homework</title>
</head>
<style>
body{
background-color: rgb(245, 245, 235);
}
.container {
width: 800px;
margin: 0 auto;
text-align: center;
}
</style>
<script>
function Back() {
window.location.href = "aFirstTable.html";
}
function Github(){
window.location.href = "https://github.com/IsmoilDotnet";
}
function Linkedin(){
window.location.href = "https://www.linkedin.com/in/ismoil-tohirov-79a032279/";
}
function Leetcode(){
window.location.href = "https://leetcode.com/ism_c_c_c/";
}
</script>
</style>
<body>
<div class="container">
<h1>Thanks for watching 🥳🥳🥳<br> See you again 🤓🤓🤓</h1>
<h4>Pages(6:6)</h4>
<button onclick="Back()">Back to first page 🔙</button>
<h3>________________________________________</h3>
<h2>Created by Ismoil</h2>
<img src="Images/Ismoil.jpg" alt="Ismoil's picture">
<h2>👇Ismoil's social media official pages👇</h2>
<button onclick="Linkedin()">Linkedin</button>
<button onclick="Github()">Github</button>
<button onclick="Leetcode()">Leetcode</button>
</div>
</body>
</html>