summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Kumar <mundane140@gmail.com>2020-06-01 17:57:03 +0530
committerAkshay Kumar <mundane140@gmail.com>2020-06-01 17:57:03 +0530
commit5fa1dea6212a1e3d3561a55b811d4375c390c7da (patch)
tree8f7543e7cd055c5cdc68b0c3320649fa95c79352
parentc3cfb94909d1bfa9c3d07738f258b872aefa5c2d (diff)
downloadenchant-5fa1dea6212a1e3d3561a55b811d4375c390c7da.tar.gz
Update index.html
- Add bootstrap to index.html following instructions at https://getbootstrap.com/docs/4.5/getting-started/introduction/ - Add the 'container' and 'my-5' class to adjust margin and padding.
-rw-r--r--index.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/index.html b/index.html
index eeb9961..c80b5ec 100644
--- a/index.html
+++ b/index.html
@@ -2,10 +2,13 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
+<!--bootstrap-->
+<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
+
<title>Enchant</title>
</head>
<body>
-<div class="content">
+<div class="content container my-5">
<h1>Enchant</h1>
<p>by Dom Lachowicz</p>
<p>Current maintainer: Reuben Thomas</p>
@@ -124,5 +127,9 @@ the native spell checkers on proprietary platforms (macOS, MS Office,…).</p>
</div>
<table style="text-align: left; background-color: rgb(244, 244, 244); width: 100%;" width="100%" border="0" cellspacing="2" cellpadding="2"><tbody><tr><td style="font-size: 8pt; align: center;"><div class="copyright">Copyright (C) 1998-2020, the AbiSource community. All rights reserved.<br />
AbiSource, AbiSuite, and AbiWord are <a href="/information/license/tm_guide.phtml">trademarks</a> of Dom Lachowicz. All other product names, company names, or logos cited herein are property of their respective owners.</div></td></tr></tbody></table>
+<!--bootstrap and its dependencies-->
+<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
+<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
+<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>