-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (67 loc) · 2.06 KB
/
index.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
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Component Libray</title>
</head>
<body>
<h1>Welcome to Monika's Component Library.</h1>
<p>I am attending neog camp to learn something new and showcase the list of projects with the help of a project library.</p>
<hr>
<h2>@typography</h2>
<h1>The biggest heading h1</h1>
<h2>The second biggest heading h2</h2>
<p>This is normal text. Long running text would look like this on your website.</p>
<small>This is a very small text.</small>
<hr>
<h2>@containers</h2>
<h3>@fluid container</h3>
<div>This is going to be a fluid container. It will go full width of page. With some margin.</div>
<h3>@center container</h3>
<div>This is going to be a center container. It will go till a given width and center content.</div>
<hr>
<h2>@links</h2>
<a href="/">Primary Link</a>
<a href="/">Secondary Link</a>
<hr>
<h2>lists</h2>
<h3>unordered lists </h3>
<ul>
<li>item one inline</li>
<li>item two inline</li>
<li>item three</li>
</ul>
<h3>reverse ordered list</h3>
<ul>
<li>item one</li>
<li>item two</li>
<li>item three</li>
</ul>
<h2>@nav</h2>
<p>Navigation is used on the top of the page and used to get to different pages</p>
<nav>
<ul>
<li>
<a href="/">I am a Developer</a>
</li>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/">Products</a>
</li>
<li>
<a href="/">About</a>
</li>
</ul>
</nav>
<hr>
<h2>@header</h2>
<header>
<img src="/home/admin123/Desktop/hero.svg"/>
<h1>There is a heading inside the header tag.</h1>
</header>
</body>
</html>