diff --git a/docs/DASHBOARD.html b/docs/DASHBOARD.html
index 9bbb6ac..e9eaeb5 100644
--- a/docs/DASHBOARD.html
+++ b/docs/DASHBOARD.html
@@ -1,9 +1,16 @@
Code snippets dashboard
+
+
-
-.yml
+
+Code snippets dashboard
+Jump to:
+
+
+
+.yml
-.ipynb
+.ipynb
| environment.ipynb |
| model.ipynb |
diff --git a/docs/index.html b/docs/index.html
index 160a165..04cdd4a 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -2,8 +2,10 @@
Azure Machine Learning code snippets
+
+`
-
+
Azure Machine Learning code snippets
Find the workflow and file for a code snippet
Enter your code snippet here (including `/azureml-`) to find the workflow and file in the AzureML examples repository.
diff --git a/docs/style.css b/docs/style.css
new file mode 100644
index 0000000..f250f9c
--- /dev/null
+++ b/docs/style.css
@@ -0,0 +1,56 @@
+/* styles.css */
+body {
+ font-family: Arial, sans-serif;
+ margin: 50px;
+ background-color: #f0f0f0;
+}
+
+h1 {
+ color: #333;
+}
+
+table {
+ width: 100%;
+ border-collapse: collapse;
+}
+
+table, th, td {
+ border: 1px solid #999;
+ padding: 10px;
+ text-align: left;
+}
+
+th {
+ background-color: #4CAF50;
+ color: white;
+}
+
+tr:nth-child(even) {
+ background-color: #f2f2f2;
+}
+
+a {
+ color: #333;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #4CAF50;
+}
+button {
+ background-color: #4CAF50; /* Green */
+ border: none;
+ color: white;
+ padding: 15px 32px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 2px;
+ cursor: pointer;
+ transition-duration: 0.4s;
+}
+
+button:hover {
+ background-color: #45a049;
+}
\ No newline at end of file