-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchangelog.html
57 lines (53 loc) · 2.13 KB
/
changelog.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
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Changelog - Online Code Editor</title>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./src/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./src/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./src/images/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto Mono', monospace;
}
.changelog-section {
margin-top: 40px;
}
.update-title {
color: #28a745;
}
.update-description {
font-size: 1.1rem;
}
</style>
</head>
<body>
<div class="container changelog-section">
<div class="row">
<div class="col-12 text-center">
<h1>Changelog</h1>
<p class="lead">Track the changes and updates to the Online Code Editor</p>
</div>
</div>
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="update">
<h3 class="update-title">Version 1.1.0 - Released on 2024-11-22</h3>
<p class="update-description">Added the ability to save code and load it later. Fixed minor bugs in the editor interface.</p>
</div>
<div class="update">
<h3 class="update-title">Version 1.0.0 - Released on 2024-11-20</h3>
<p class="update-description">Initial release of the Online Code Editor with support for HTML, CSS, and JavaScript editing with live preview.</p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>