Skip to content

Commit 9f57b88

Browse files
docs: Added Docs for FAQs (#111)
Co-authored-by: Jonah Lawrence <[email protected]>
1 parent 90fd375 commit 9f57b88

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docs/faq.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# How do I include Readme Typing SVG in my Readme?
2+
3+
Markdown files on GitHub support embedded images using Markdown or HTML.
4+
5+
Markdown:
6+
7+
```html
8+
[![Typing SVG](https://readme-typing-svg.herokuapp.com/?lines=First+line+of+text;Second+line+of+text)](https://git.io/typing-svg)
9+
```
10+
11+
HTML:
12+
13+
```html
14+
<a href="https://git.io/typing-svg"><img src="https://readme-typing-svg.herokuapp.com/?lines=First+line+of+text;Second+line+of+text"></a>
15+
```
16+
17+
# FAQs
18+
19+
## How do I center the image on the page?
20+
21+
We can do so by *using the HTML version*, and then wrapping it by the HTML attribute of `align="center"`.
22+
23+
You can do so by:
24+
25+
```html
26+
<p align="center">
27+
<img src="https://readme-typing-svg.herokuapp.com/?lines=Type+messages+everywhere!;Add+a+bio+to+your+profile!;Add+a+description+to+your+repo!;Make+your+readme+stand+out!&font=Fira%20Code&center=true&width=380&height=50">
28+
</p>
29+
```

0 commit comments

Comments
 (0)