microsoft/AI-For-Beginners

Public

mirrored fromhttps://github.com/microsoft/AI-For-BeginnersAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
ed86f82bd3ea807bd02c33f7d01ef87871ef260e

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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