-
Notifications
You must be signed in to change notification settings - Fork 40
/
typography.html
88 lines (66 loc) · 2.7 KB
/
typography.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html>
<head>
<title>Hello World</title>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="scripts.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:url" content="http://gyanl.com/" />
<meta property="og:type" content="article" />
<meta property="og:title" content="My place on the internet." />
<meta property="og:description" content="Good design is as little design as possible." />
<meta property="og:image" content="https://gyanl.com/web-starter/og-image.png" />
</head>
<body>
<header class="site-header">
<a href="/" class="header-text">Gyan's Blog</a>
</header>
<div class="blog-container">
<h1>Typography in HTML</h1>
<p>A short byline for this article.</p>
<div class="author-block">
<img class="photo-author" src="gyan.jpg">
Gyan Lakhwani<br>
<div class="date">27 January 2020</div>
</div>
<h1>This text is is H1. Heading one text.</h1>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
<h2>This text is is H2. Heading two text.</h2>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
<h3>This text is is H3. Heading three text.</h3>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
<h4>This text is is H4. Heading four text.</h4>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
<h5>This text is is H5. Heading five text.</h5>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
<h6>This text is is H6. Heading six text.</h6>
<p>Some basics of typography on the web. This presentation will cover CSS typography, and gives an easy way to make a functional blog.</p>
</div>
<footer class="site-footer">
<a class="social-link" href="https://www.facebook.com/gyanlakhwani">
Facebook
</a>
•
<a class="social-link" href="https://twitter.com/gyanl">
Twitter
</a>
•
<a class="social-link" href="https://www.instagram.com/gyanl/">
Instagram
</a>
•
<a class="social-link" href="https://www.linkedin.com/in/gyanlakhwani">
LinkedIn
</a>
•
<a class="social-link" href="https://github.com/gyanl">
Github
</a>
<br>
Made with
<span class="heart">♥</span>
in New Delhi
</div>
</footer>
</body>
</html>