|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <title>Notebooks</title> |
| 8 | + <!-- You can include a style tag to add CSS directly in your HTML file --> |
| 9 | + <style> |
| 10 | + body { |
| 11 | + font-family: 'cambria', sans-serif; |
| 12 | + line-height: 1.6; |
| 13 | + font-size: 16px; |
| 14 | + } |
| 15 | + .container { |
| 16 | + max-width: 900px; |
| 17 | + margin: auto; |
| 18 | + padding: 20px; |
| 19 | + } |
| 20 | + .notebook-cover { |
| 21 | + text-align: center; |
| 22 | + padding: 50px; |
| 23 | + background-color: #b2e2f8; |
| 24 | + color: #333; |
| 25 | + border-radius: 10px; |
| 26 | + box-shadow: 0 5px 15px rgba(0,0,0,.3); |
| 27 | + margin-bottom: 30px; |
| 28 | + } |
| 29 | + h1 { |
| 30 | + color: #556b2f; |
| 31 | + } |
| 32 | + .section-title { |
| 33 | + color: #41339c; |
| 34 | + } |
| 35 | + ul { |
| 36 | + list-style-type: none; |
| 37 | + } |
| 38 | + li { |
| 39 | + margin-bottom: 10px; |
| 40 | + } |
| 41 | + </style> |
| 42 | +</head> |
| 43 | +<body> |
| 44 | + <div class="container"> |
| 45 | + <div class="notebook-cover"> |
| 46 | + <h1><span style="color:#daa520;">✨ CML Polymath Notebooks ✨</span></h1> |
| 47 | + <p>Welcome to this repository, which contains all the notebooks based on Data Science books I've read. |
| 48 | + The purpose of this repository is to show my journey through the field and, most importantly, <b>to share the knowledge.</b> |
| 49 | + </p> |
| 50 | + |
| 51 | + <hr> |
| 52 | + |
| 53 | + <p class="section-title">Each series of notebooks is dedicated to a specific book and contains the following sections:</p> |
| 54 | + |
| 55 | + <ul> |
| 56 | + <li><strong>Book Information:</strong> <em>Title, Author, Publication Year,</em> and a brief summary.</li> |
| 57 | + <li><strong>Key Takeaways:</strong> The most important points and ideas from the book.</li> |
| 58 | + <li><strong>General Notes:</strong> Terms, caveats, and the code written step-by-step</li> |
| 59 | + <li><strong>Discussion Questions:</strong> Questions to spark conversations and debates about the book's content.</li> |
| 60 | + </ul> |
| 61 | + |
| 62 | + <p>Feel free to explore the notebooks, contribute your own insights, and join the discussion. <i>Happy reading!</i></p> |
| 63 | + </div> |
| 64 | + <!-- Add notebook entries here --> |
| 65 | + </div> |
| 66 | +</body> |
| 67 | +</html> |
0 commit comments