Fix capitalisation on webpage

Changes "Ever-blowing" to "Ever-Blowing" to match the capitalisation
style of the rest of the page.
This commit is contained in:
Ben Bridle 2022-08-28 15:14:52 +12:00
parent 22bdf1f6b4
commit 9f14f50650
1 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ const HTML_HEAD: &str = r#"
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&family=Vollkorn:wght@600&family=PT+Serif&family=Merriweather&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>An Ode to the Ever-blowing Wind</title>
<title>An Ode to the Ever-Blowing Wind</title>
<style>
* {
color: #022;
@ -221,7 +221,7 @@ const HTML_HEAD: &str = r#"
<body>
<div class="container">
<h1 class="title">An Ode to the Ever-blowing Wind</h1>
<h1 class="title">An Ode to the Ever-Blowing Wind</h1>
<div class="content">
"#;