html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- Coded by Rahul George -->
<!-- Ably assisted by Paola ( Pao ) -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width, initial-scale=1.0">
<meta name="description" content=" Python resources "></meta>
<meta name="author"content=" Rahul George "></meta>
<title>Python library/module Resources</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Kalam" rel="stylesheet" type="text/css" >
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Sunflower:300" rel="stylesheet" type="text/css" >
<script src="https://code.jquery.com/jquery-3.1.1.js">
</script>
</head>
<body>
<p id="_header">Introduction [CLICK HERE]</p>
<p id="intro">
Hello Sololearners!
Over the next couple of weeks/months, I'll be posting resources/tutorials that'll help you get familiar with Python's modules. You're free to contribute in the comments section. [The resources are located below the eye]... Scroll down...
</p>
<div class="container">
<!-- Source for code lines 28-36 : https://youtu.be/9Yk_bR0cFOc -->
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Coded by Rahul George (not wholly, though...) */
body
{
margin: 0;
padding: 0;
background-color: #F4F4F4;
}
#_header
{
background-color: #C0B283;
text-align:center;
color: #000000;
padding:5px;
cursor:pointer;
font-family: 'Nunito', sans-serif;
}
#intro
{
background-color: #DCD0C0 ;
color: rgb(0,0,0);
display:none;
font-family: 'Kalam', cursive; ;
margin-bottom:10px;
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
7
8
9
10
11
12
13
//Coded by Rahul George
alert(" Thanks for taking time to check this out! 😊 All recommendations and bug reports are welcome.😺 Thanks Paola, for all the help! 👻 ¡STAY TUNED FOR MORE!")
alert("Great added amusement: 👀 * For people using Sololearn Playground on the Web platform(preferred), hover over the eye. *For sololearn app users, click anywhere on the eye and then on the greyish background that surrounds it 😉 ")
$(function() {
$("#_header").click(function() {
$("#intro").fadeToggle(1000);
});
});
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run