forked from TheOdinProject/css-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (85 loc) · 4.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSS-Exercises</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<div class="logo">
<h2>CSS-Exercises</h2>
</div>
</header>
<main>
<h2>solve this problem to get a Handon ON CSS</h2>
<div class="practices">
<div class="dropdown">
<div class="box animation"><a href="#">animation</a>
<div class="dropdown-content">
<a href="./animation/01-button-hover/index.html">Button Hover</a>
<a href="./animation/02-pop-up/index.html">Pop Up</a>
<a href="./animation/03-dropdown-menu/index.html">dropdown-menu</a>
</div>
</div>
</div>
<div class="dropdon">
<div class="box flex"><a href="#">flex</a>
<div class="dropdown-content">
<a href="./flex/01-flex-center/index.html">flex-center</a>
<a href="./flex/02-flex-header/index.html">flex-Header</a>
<a href="./flex/03-flex-header-2/index.html">flex-Header 2</a>
<a href="./flex/04-flex-information/index.html">flex-Information</a>
<a href="./flex/05-flex-modal/index.html">flex-modal</a>
<a href="./flex/06-flex-layout/index.html">flex-Layout</a>
<a href="./flex/07-flex-layout-2/index.html">flex-Layout2</a>
</div>
</div>
</div>
<div class="dropdown">
<div class="box foundations"><a href="#">foundations</a>
<div class="dropdown-content">
<a href="./foundations/01-css-methods/index.html">CSS Methods</a>
<a href="./foundations/02-class-id-selectors/index.html">CSS Class&ID class-id-selectors</a>
<a href="./foundations/03-grouping-selectors/index.html">CSS grouping-selectors</a>
<a href="./foundations/04-chaining-selectors/index.html">CSS chaining-selectors</a>
<a href="./foundations/05-descendant-combinator/">CSS descendant-combinator</a>
<a href="./foundations/06-cascade-fix/index.html">CSS cascade-fix</a>
</div>
</div>
</div>
<div class="dropdown">
<div class="box grid"><a href="#">grid</a>
<div class="dropdown-content">
<a href="./grid/01-grid-layout-1/index.html">Grid Layout-1</a>
<a href="./grid/02-grid-layout-2/index.html">Grid Layout-2</a>
<a href="./grid/03-grid-layout-3/index.html">Grid Layou-3</a>
</div>
</div>
</div>
<div class="dropdown">
<div class="box margins"><a href="#">Margin & Padding</a>
<div class="dropdown-content">
<a href="./margin-and-padding/01-margin-and-padding-1/index.html">Margin & bpadding</a>
<a href="./margin-and-padding/02-margin-and-padding-2/index.html">Margin & bpadding</a>
</div>
</div>
</div>
</div>
<div class="info">
<h2>open the respected folder and try to solve the problem.The solution to problem is also available in same folder<h2></h2>
</div>
</main>
<footer>
<p>All right Recived 2023</p>
</footer>
</div>
</body>
</html>