-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClaim certificate.html
More file actions
53 lines (41 loc) · 1.31 KB
/
Claim certificate.html
File metadata and controls
53 lines (41 loc) · 1.31 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
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="download.jpg" rel="icon">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Python For Beginner | Congratulation</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
h1{
margin-top: 5%;
text-align: center;
}
.cong{
margin-top: 2%;
}
</style>
</head>
<body>
<h1>PYTHON FOR BEGINNER</h1>
<h1><p class="cong" style="font-family: 'Brush Script MT', monospace;">Congratulation!</p></h1>
<p style="font-family: 'Brush Script MT', monospace;" id='display'>
</p>
<h1><p class="cong" style="font-family: 'Brush Script MT', monospace;">You Have Completed Your Python Course.</p></h1>
<script type="text/javascript">
// let text = "You Did it.";
let foo = prompt("What's Your Name ? ");
let bar = confirm('Confirm or deny');
// console.log(foo, bar);
document.getElementById("display").innerHTML = foo;
document.getElementById("display").style.fontSize = "50px";
document.getElementById("display").style.textAlign = 'center';
document.getElementById("display").style.marginTop = '30px';
document.getElementById("display").style.color = 'magenta';
</script>
</body>
</html>