Skip to content

Commit d18a9c6

Browse files
committed
moved css styling to top of web scraping
1 parent 280b6b9 commit d18a9c6

File tree

1 file changed

+15
-26
lines changed

1 file changed

+15
-26
lines changed

Special-Topics/Web-Scraping.ipynb

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {
7+
"collapsed": false
8+
},
9+
"outputs": [],
10+
"source": [
11+
"from IPython.core.display import HTML\n",
12+
"def css_styling():\n",
13+
" styles = open(\"../styles/custom.css\", \"r\").read()\n",
14+
" return HTML(styles)\n",
15+
"css_styling()"
16+
]
17+
},
318
{
419
"cell_type": "markdown",
520
"metadata": {},
@@ -1144,32 +1159,6 @@
11441159
"\n",
11451160
" # Your code here"
11461161
]
1147-
},
1148-
{
1149-
"cell_type": "code",
1150-
"execution_count": null,
1151-
"metadata": {
1152-
"collapsed": false
1153-
},
1154-
"outputs": [],
1155-
"source": [
1156-
"from IPython.core.display import HTML\n",
1157-
"\n",
1158-
"\n",
1159-
"def css_styling():\n",
1160-
" styles = open(\"../styles/custom.css\", \"r\").read()\n",
1161-
" return HTML(styles)\n",
1162-
"css_styling()"
1163-
]
1164-
},
1165-
{
1166-
"cell_type": "code",
1167-
"execution_count": null,
1168-
"metadata": {
1169-
"collapsed": true
1170-
},
1171-
"outputs": [],
1172-
"source": []
11731162
}
11741163
],
11751164
"metadata": {

0 commit comments

Comments
 (0)