-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendPage.html
More file actions
51 lines (46 loc) · 1.38 KB
/
Copy pathendPage.html
File metadata and controls
51 lines (46 loc) · 1.38 KB
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
<!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: cornflowerblue;
}
.container{
width: 800px;
margin: 0 auto;
text-align: center;
}
</style>
<script>
function Menu(){
window.location.href = "aLessonOne.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>
<body>
<div class="container">
<h1>Thanks for watching 🥳🥳🥳<br> See you again 🤓🤓🤓</h1>
<h4>Pages(7:7)</h4>
<button onclick="Menu()">Back to first page 🔙</button>
<h3>________________________________________</h3>
<h2>Created by Ismoil</h2>
<img src="Images/Ismoil - Copy.jpg" alt="Ismoil's picture">
<h2>👇Ismoil's social media official pages👇</h2>
<button onclick="Github()">Github</button>
<button onclick="Linkedin()">Linkedin</button>
<button onclick="Leetcode()">Leetcode</button>
</div>
</body>
</html>