Skip to content

Commit 79718fa

Browse files
committed
fix: basic inline style sheets
1 parent fb3fc09 commit 79718fa

3 files changed

Lines changed: 47 additions & 0 deletions

File tree

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<link rel="stylesheet" type="text/css" href="css/my_style.css">
8+
<title>Imported CSS</title>
9+
</head>
10+
11+
<body>
12+
<h1>Basic Text Rendering</h1>
13+
Hello <b>I am Bold</b>
14+
<br> <!--I am a line break(i.e. a new line)-->
15+
Hello <i>I am Italic</i>
16+
<br>
17+
Hello <s>I am Stricken off</s>
18+
<br>
19+
Hello <u>I am underlined</u>
20+
21+
<h1>Basic Headings</h1>
22+
<h1>Hello I am H1</h1>
23+
<h2>Hello I am H2</h2>
24+
<h3>Hello I am H3</h3>
25+
<h4>Hello I am H4</h4>
26+
<h5>Hello I am H5</h5>
27+
<h6>Hello I am H6</h6>
28+
29+
<p style="color: chartreuse; text-transform: uppercase;">Below is a line</p>
30+
<hr>
31+
</body>
32+
33+
</html>

spellcheck.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
matrix:
2+
- name: English
3+
aspell:
4+
lang: en
5+
ignore-case: false
6+
dictionary:
7+
wordlists:
8+
- .spellcheck_exceptions_dictionary.txt
9+
encoding: utf-8
10+
sources:
11+
- "**/*.md"
12+
- "**/*.tex"
13+
- "**/*.txt"
14+
default_encoding: utf-8

0 commit comments

Comments
 (0)