Skip to content

Commit db8c89d

Browse files
committed
edited 4th row
1 parent fdee8a5 commit db8c89d

File tree

7 files changed

+174
-4
lines changed

7 files changed

+174
-4
lines changed

css/scrollspy.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Add your css for textfields */

css/tabs.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Add your css for textfields */

css/tags.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* Add your css for textfields */

index.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,6 @@ <h1 class="emoji">😀</h1>
223223
</div>
224224

225225

226-
227-
228-
229-
230226
</div>
231227
</div>
232228
</section>

pages/scrollspy.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Css Components</title>
7+
<link
8+
rel="icon"
9+
href="../favicon/android-chrome-192x192.png"
10+
type="image"
11+
/>
12+
<link
13+
href="https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap"
14+
rel="stylesheet"
15+
/>
16+
<link
17+
rel="stylesheet"
18+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
19+
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
20+
crossorigin="anonymous"
21+
/>
22+
<link rel="stylesheet" href="../css/style.css" />
23+
<link rel="stylesheet" href="../css/scrollspy.css" />
24+
<link rel="stylesheet" href="../css/cardcolor.css" />
25+
<link rel="stylesheet" href="../css/assets/magic.css" />
26+
</head>
27+
28+
<body>
29+
<section class="header">
30+
<div class="container-fluid section-for-header">
31+
<div class="content">
32+
<div class="content-header">
33+
<h1>SCROLLSPY</h1>
34+
</div>
35+
<div class="content-body">
36+
<h3>Add your different scrollspy</h3>
37+
</div>
38+
<div class="content-footer">
39+
<a href="https://github.com/rubenshibu/css-components" class="btn"
40+
>⚡ Github
41+
</a>
42+
</div>
43+
</div>
44+
</div>
45+
</section>
46+
<section class="items">
47+
<div class="container-fluid">
48+
<!-- your name -->
49+
<!-- Add your html content that you have copied from contributors.md along with you component -->
50+
</div>
51+
</section>
52+
<footer>
53+
<p>made with 💛 by, <br /><strong>CS CHAPTER AJCESB</strong></p>
54+
</footer>
55+
<script src="../js/index.js"></script>
56+
</body>
57+
</html>

pages/tabs.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Css Components</title>
7+
<link
8+
rel="icon"
9+
href="../favicon/android-chrome-192x192.png"
10+
type="image"
11+
/>
12+
<link
13+
href="https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap"
14+
rel="stylesheet"
15+
/>
16+
<link
17+
rel="stylesheet"
18+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
19+
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
20+
crossorigin="anonymous"
21+
/>
22+
<link rel="stylesheet" href="../css/style.css" />
23+
<link rel="stylesheet" href="../css/tabs.css" />
24+
<link rel="stylesheet" href="../css/cardcolor.css" />
25+
<link rel="stylesheet" href="../css/assets/magic.css" />
26+
</head>
27+
28+
<body>
29+
<section class="header">
30+
<div class="container-fluid section-for-header">
31+
<div class="content">
32+
<div class="content-header">
33+
<h1>TABS</h1>
34+
</div>
35+
<div class="content-body">
36+
<h3>Add your different tabs</h3>
37+
</div>
38+
<div class="content-footer">
39+
<a href="https://github.com/rubenshibu/css-components" class="btn"
40+
>⚡ Github
41+
</a>
42+
</div>
43+
</div>
44+
</div>
45+
</section>
46+
<section class="items">
47+
<div class="container-fluid">
48+
<!-- your name -->
49+
<!-- Add your html content that you have copied from contributors.md along with you component -->
50+
</div>
51+
</section>
52+
<footer>
53+
<p>made with 💛 by, <br /><strong>CS CHAPTER AJCESB</strong></p>
54+
</footer>
55+
<script src="../js/index.js"></script>
56+
</body>
57+
</html>

pages/tags.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Css Components</title>
7+
<link
8+
rel="icon"
9+
href="../favicon/android-chrome-192x192.png"
10+
type="image"
11+
/>
12+
<link
13+
href="https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap"
14+
rel="stylesheet"
15+
/>
16+
<link
17+
rel="stylesheet"
18+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
19+
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
20+
crossorigin="anonymous"
21+
/>
22+
<link rel="stylesheet" href="../css/tags.css" />
23+
<link rel="stylesheet" href="../css/pills.css" />
24+
<link rel="stylesheet" href="../css/cardcolor.css" />
25+
<link rel="stylesheet" href="../css/assets/magic.css" />
26+
</head>
27+
28+
<body>
29+
<section class="header">
30+
<div class="container-fluid section-for-header">
31+
<div class="content">
32+
<div class="content-header">
33+
<h1>TAGS</h1>
34+
</div>
35+
<div class="content-body">
36+
<h3>Add your different Tags</h3>
37+
</div>
38+
<div class="content-footer">
39+
<a href="https://github.com/rubenshibu/css-components" class="btn"
40+
>⚡ Github
41+
</a>
42+
</div>
43+
</div>
44+
</div>
45+
</section>
46+
<section class="items">
47+
<div class="container-fluid">
48+
<!-- your name -->
49+
<!-- Add your html content that you have copied from contributors.md along with you component -->
50+
</div>
51+
</section>
52+
<footer>
53+
<p>made with 💛 by, <br /><strong>CS CHAPTER AJCESB</strong></p>
54+
</footer>
55+
<script src="../js/index.js"></script>
56+
</body>
57+
</html>

0 commit comments

Comments
 (0)