Skip to content

Commit b7388f1

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

5 files changed

Lines changed: 56 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: python
1+
name: css
22

33
on:
44
push:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# acronyms
2+
MYINC
3+
svg
4+
yaml
25

36
# authors
7+
praisetompane
48

59
# concepts
610

711
# course codes:
812

913
# technology:
14+
pyspelling
15+
https
1016

1117
# institutions:
18+
roadmap
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>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
## Community
3333

3434
## Learning Resources
35-
- [roadmap](https://www.youtube.com/watch?v=G3e-cpL7ofc)
35+
- [roadmap]()
3636
- [practice problems]()
3737

3838
## Spell Check

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)