-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
63 lines (61 loc) · 2.42 KB
/
main.html
File metadata and controls
63 lines (61 loc) · 2.42 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
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<title>Pypaint</title>
</head>
<style>
a:link, a:visited {
background-color: #f85b50;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
box-shadow: 0px 0px 4px 0px black;
}
a:hover, a:active {
background-color: rgb(214, 31, 31);
}
</style>
<body>
<div class="bt">
<a href="https://github.com/iconicsudip/Py-paint/blob/master/Paint.exe?raw=true">Download paint.exe file</a>
</div>
<div class="img">
<img src="pypaintdemo.png" alt="">
</div>
<h2 style="text-align: center;margin-top: 2rem;margin-bottom: 2rem;">Steps to follow</h2>
<div class="container" style="margin-top: 4rem;margin-bottom: 4rem;">
<ol class="list-group list-group-numbered">
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Download</div>
Download "paint.exe" file from above link.
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Installation</div>
After download the file you have to install .exe file
</div>
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Run app</div>
After installation process you will get a file.then you have to open that file and run main.exe file to run app.
</div>
</li>
</ol>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>