-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPythonCore.html
More file actions
33 lines (33 loc) · 928 Bytes
/
Copy pathPythonCore.html
File metadata and controls
33 lines (33 loc) · 928 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Certificate</title>
<style>
.certificate-container-single-image {
text-align: center;
margin: 20px;
}
.certificate-image {
max-width: 100%;
}
.download-button {
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="certificate-container-single-image">
<h1>Python Core</h1>
<img class="certificate-image" src="PythonCore.png" alt="Python Core">
<a href="PythonCore.png" download class="download-button">Download Certificate</a>
<a href="Certificates.html" class="back-button">Back to Home</a>
</div>
</body>
</html>