|
4 | 4 | <title>Learning Path</title> |
5 | 5 | <!-- Include Bootstrap CSS --> |
6 | 6 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> |
7 | | - <!-- Include your custom CSS file if needed --> |
8 | | - <link rel="stylesheet" href="styles.css"> |
9 | | - <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> |
10 | | - <style> |
11 | | - body |
12 | | - { |
13 | | - background-color: #172439; |
14 | | - padding-left: 5px; |
15 | | - padding-right: 5px; |
16 | | - } |
17 | | - |
18 | | - |
19 | | - |
20 | | - .d-inline-block |
21 | | - { |
22 | | - height: 11.5vh; |
23 | | - } |
24 | | - .navbar |
25 | | - { |
26 | | - margin-bottom: -3vh; |
27 | | - } |
28 | | - hr |
29 | | - { |
30 | | - border-top:3px solid #A78BFA; |
31 | | - width: 90%; |
32 | | - } |
33 | | - |
34 | | - .search-container { |
35 | | - display: flex; |
36 | | - justify-content: center; |
37 | | - align-items: center; |
38 | | - height: 15vh; |
39 | | - } |
40 | | - |
41 | | - .search-box { |
42 | | - position: relative; |
43 | | - display: inline-block; |
44 | | - } |
45 | | - |
46 | | - .search-box input[type="text"] { |
47 | | - padding: 10px 20px; |
48 | | - border: none; |
49 | | - border-radius: 20px; |
50 | | - background-color: #3F4A5B; |
51 | | - color: #fff; |
52 | | - width: 22vw; |
53 | | - } |
54 | | - |
55 | | - .search-box input[type="text"]::placeholder { |
56 | | - color: #fff; |
57 | | - } |
58 | | - |
59 | | - .search-box .search-icon { |
60 | | - position: absolute; |
61 | | - top: 50%; |
62 | | - right: 18px; |
63 | | - height: 20px; |
64 | | - width:20px; |
65 | | - transform: translateY(-50%); |
66 | | - } |
67 | | - |
68 | | - </style> |
| 7 | + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> |
| 8 | +<link rel="stylesheet" href="/static/home.css"> |
| 9 | +<link rel="stylesheet" href="static/card.css"> |
69 | 10 | </head> |
| 11 | + |
| 12 | + |
70 | 13 | <body> |
71 | 14 | <nav class="navbar navbar-expand-lg"> |
72 | 15 | <a class="navbar-brand" href="#"> |
73 | 16 | <!-- Replace the 'logo.svg' with your SVG logo --> |
74 | | - <img src="logo.svg" class="d-inline-block align-top" alt="Logo"> |
| 17 | + <img src="assets/logo.svg" class="d-inline-block align-top" alt="Logo"> |
75 | 18 | </a> |
76 | 19 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> |
77 | 20 | <span class="navbar-toggler-icon"></span> |
|
80 | 23 | <ul class="navbar-nav"> |
81 | 24 | <li class="nav-item"> |
82 | 25 | <!-- Replace the 'icon1.svg' with your first SVG icon --> |
83 | | - <a class="nav-link" href="#"><img src="icons/home.svg" width="43" height="43" alt="Icon 1"></a> |
| 26 | + <a class="nav-link" href="#"><img src="assets/icons/home.svg" width="43" height="43" alt="Icon 1"></a> |
84 | 27 | </li> |
85 | 28 | <li class="nav-item"> |
86 | 29 | <!-- Replace the 'icon2.svg' with your second SVG icon --> |
87 | | - <a class="nav-link" href="#"><img src="icons/logout.svg" width="43" height="43" alt="Icon 2"></a> |
| 30 | + <a class="nav-link" href="#"><img src="assets/icons/logout.svg" width="43" height="43" alt="Icon 2"></a> |
88 | 31 | </li> |
89 | 32 | <li class="nav-item"> |
90 | 33 | <!-- Replace the 'icon3.svg' with your third SVG icon --> |
91 | | - <a class="nav-link" href="#"><img src="icons/profile.svg" width="43" height="43" alt="Icon 3"></a> |
| 34 | + <a class="nav-link" href="#"><img src="assets/icons/profile.svg" width="43" height="43" alt="Icon 3"></a> |
92 | 35 | </li> |
93 | 36 | </ul> |
94 | 37 | </div> |
|
101 | 44 | <div class="search-container"> |
102 | 45 | <div class="search-box"> |
103 | 46 | <input type="text" placeholder="Search" class="search-box"> |
104 | | - <img src="icons/search.svg" alt="Search Icon" class="search-icon"> |
| 47 | + <img src="assets/icons/search.svg" alt="Search Icon" class="search-icon"> |
105 | 48 | </div> |
106 | 49 | </div> |
107 | | - |
108 | 50 |
|
| 51 | + <div class="cardMain"> |
| 52 | + <div class="courses-container"> |
| 53 | + <div class="course"> |
| 54 | + <div class="course-preview"> |
| 55 | + <h6>Course</h6> |
| 56 | + <h2>JavaScript Fundamentals</h2> |
| 57 | + <a href="#">View all chapters <i class="fas fa-chevron-right"></i></a> |
| 58 | + <button class="btn">Continue</button> |
| 59 | + </div> |
| 60 | + |
109 | 61 |
|
110 | | - |
111 | | - |
112 | | - |
113 | | - |
| 62 | + </div> |
114 | 63 |
|
115 | 64 | <!-- Include Bootstrap JS and jQuery --> |
116 | 65 | <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> |
|
0 commit comments