microsoft/AI-For-Beginners
Publicmirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable
index.html
29lines · modecode
| 1 | <!DOCTYPE html> |
| 2 | <html lang="en"> |
| 3 | |
| 4 | <head> |
| 5 | <meta charset="UTF-8"> |
| 6 | <title>AI for Beginners</title> |
| 7 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
| 8 | <meta name="description" content="Description"> |
| 9 | <meta name="viewport" |
| 10 | content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
| 11 | <link rel="icon" type="image/png" href="images/favicon.png"> |
| 12 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"> |
| 13 | </head> |
| 14 | |
| 15 | <body> |
| 16 | <div id="app"></div> |
| 17 | <script> |
| 18 | window.$docsify = { |
| 19 | name: 'AI for Beginners', |
| 20 | repo: 'https://github.com/Microsoft/AI-For-Beginners', |
| 21 | relativePath: true, |
| 22 | auto2top: true, |
| 23 | routerMode: 'history' |
| 24 | } |
| 25 | </script> |
| 26 | <script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script> |
| 27 | </body> |
| 28 | |
| 29 | </html> |
| 30 | |