-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (97 loc) · 3.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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 Library</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Welcome to Devraj Roy's Component Library</h1>
<p>I am attending neog.camp and I want to amke alibrary whicj will make all my projects look good and consistant.</p>
<hr>
<h2>@typography</h2>
<h1>This is the Biggest heading</h1>
<h2>This is the second biggest Heading</h2>
<p>Let me show you the normal text. This is free flowing and will wrap at the end line of a paragraph</p>
<p>This paragraph will have a <strong>bold</strong> text</p>
<small>This is relatively smaller text</small>
<h3>@containers</h3>
<div class="container">This is a fluid container and it will go till the end of the page</div>
<div class="container-center">This is a centered container and it wil go till the specified width</div>
<h2>@links</h2>
<a class="link primary-color" href="">Primary Link</a>
<a class="link secondary-color" href="">Secondary Link</a>
<hr>
<h1>@list</h1>
<h2>unordered list</h2>
<ul class="non-bullet">
<li>Item One</li>
<li>Iteam Two</li>
<li>Item Three</li>
</ul>
<h2>Inline unordered list</h2>
<ul class="non-bullet">
<li class="list-item-inline">Inline Item One</li>
<li class="list-item-inline">Inline Iteam Two</li>
<li class="list-item-inline">Inline Item Three</li>
</ul>
<h2>revrse ordered list</h2>
<ol reversed>
<li>milk</li>
<li>eggs</li>
<li>bread</li>
</ol>
<h2>@nav</h2>
<nav class="navigation">
<div class="nav-brand">I am Brand</div>
<ul class="unordered nav-pills">
<li class="list-item-inline">
<a class="link link-active" href="/">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">Products</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">About</a>
</li>
</ul>
</nav>
<hr>
<h1>@header</h1>
<header class="hero">
<img class="hero-image" src="images/heroimage.svg">
<h1 class="hero-heading">Devraj Roy the
<span class="heading-inverted">web developer</span></h1>
</header>
<h2>@section</h2>
<section class="section">
<div class="container container-center">
<h1>white section</h1>
<p>this will have white background</p>
</div>
</section>
<section class="section ow">
<div class="container container-center">
<h1>off white section</h1>
<p>this will have gray background</p>
</div>
</section>
<h2>@footer</h2>
<footer class="footer">
<div class="footer-header">some small heading inside footer</div>
<ul class="social-link non-bullet">
<li class="list-item-inline">
<a class="link" href="/">socialone</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">socialtwo</a>
</li>
<li class="list-item-inline">
<a class="link" href="/">socialthree</a>
</li>
</ul>
</footer>
</body>
</html>