Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ web page:
<style>
@font-face {
font-family: "Computer Modern";
src: url('http://spratt.github.io/Computer-Modern/cmunss.otf');
src: url('https://spratt.github.io/Computer-Modern/cmunss.otf');
}
@font-face {
font-family: "Computer Modern";
src: url('http://spratt.github.io/Computer-Modern/cmunsx.otf');
src: url('https://spratt.github.io/Computer-Modern/cmunsx.otf');
font-weight: bold;
}
@font-face {
font-family: "Computer Modern";
src: url('http://spratt.github.io/Computer-Modern/cmunsi.otf');
src: url('https://spratt.github.io/Computer-Modern/cmunsi.otf');
font-style: italic, oblique;
}
@font-face {
font-family: "Computer Modern";
src: url('http://spratt.github.io/Computer-Modern/cmunbxo.otf');
src: url('https://spratt.github.io/Computer-Modern/cmunbxo.otf');
font-weight: bold;
font-style: italic, oblique;
}
Expand Down
24 changes: 12 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Computer-Modern</title>
<link rel="stylesheet" type="text/css"
href="http://spratt.github.io/EasyCSS/minimalist.css" />
href="https://spratt.github.io/EasyCSS/minimalist.css" />
<link rel="stylesheet" type="text/css"
href="http://spratt.github.io/Computer-Modern/cmserif.css" />
href="https://spratt.github.io/Computer-Modern/cmserif.css" />
<link rel="stylesheet" type="text/css"
href="http://spratt.github.io/Computer-Modern/cmsans.css" />
href="https://spratt.github.io/Computer-Modern/cmsans.css" />
<style>
body {
line-height: 1.3em;
Expand All @@ -21,9 +21,9 @@
}
</style>
<style>
body {
font-family: "Computer Modern Serif", serif;
}
body {
font-family: "Computer Modern Serif", serif;
}
.sans {
font-family: "Computer Modern Sans", sans-serif;
}
Expand All @@ -32,7 +32,7 @@
font-weight: normal;
font-style: italic;
}
</style>
</style>
</head>
<body>
<h1>Computer-Modern</h1>
Expand All @@ -44,15 +44,15 @@ <h2>
<p>
The <a href="https://en.wikipedia.org/wiki/Computer_Modern">Computer
Modern</a> family of fonts was developed
by <a href="http://www-cs-faculty.stanford.edu/~knuth/">Donald
by <a href="https://www-cs-faculty.stanford.edu/~knuth/">Donald
Knuth</a> and described in detail in the book <i>Computer Modern
Typefaces</i>.
</p>

<p>
<a href="http://cm-unicode.sourceforge.net/">The Computer Modern
<a href="https://cm-unicode.sourceforge.net/">The Computer Modern
Unicode font project is hosted on sourceforge</a> and
is <a href="http://cm-unicode.sourceforge.net/license.html">licensed
is <a href="https://cm-unicode.sourceforge.net/license.html">licensed
under a modified X11 license</a>, under which this project is
also <a href="https://github.com/spratt/Computer-Modern/blob/gh-pages/LICENSE">licensed</a>.
</p>
Expand All @@ -65,7 +65,7 @@ <h3>Computer Modern Serif</h2>
</p>
<pre><code>
&lt;link rel="stylesheet" type="text/css"
href="http://spratt.github.io/Computer-Modern/cmserif.css" /&gt;
href="https://spratt.github.io/Computer-Modern/cmserif.css" /&gt;
</code></pre>
<p>
Then simply choose "Computer Modern Serif" as a font-family in
Expand All @@ -87,7 +87,7 @@ <h3 class="sans">Computer Modern Sans</h2>
</p>
<pre><code>
&lt;link rel="stylesheet" type="text/css"
href="http://spratt.github.io/Computer-Modern/cmsans.css" /&gt;
href="https://spratt.github.io/Computer-Modern/cmsans.css" /&gt;
</code></pre>
<p class="sans">
Then simply choose "Computer Modern Sans" as a font-family in
Expand Down