This repository was archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (95 loc) · 4.18 KB
/
index.html
File metadata and controls
105 lines (95 loc) · 4.18 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>Python Tutorial</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/76637730?v=4" type="image/gif" sizes="16x16" style="border-radius: 50%;">
<link rel="stylesheet" href="https://app.staticsave.com/root/root.css">
<link rel="stylesheet" href="https://app.staticsave.com/root/noselect.css">
<link rel="stylesheet" href="https://app.staticsave.com/root/tutorial.css">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/c5266611a7.js" crossorigin="anonymous"></script>
</head>
<body>
<nav id="customNav" class="navbar navbar-expand-sm bg-light fixed-top">
<div class="container-fluid justify-content-start">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#section1">
<img id="hrtLogo" src="https://avatars.githubusercontent.com/u/76637730?v=4" draggable="false" width="50" style="border-radius:50%; filter: brightness(1.2);"/>
</a>
</li>
</ul>
</div>
</nav>
<h1 class="noSelect" style="margin-top:85px">Python Basics </h1>
<h2 class="noSelect" style="margin:30px; text-align: center;">Getting Started with Python </h2>
<div class="all">
<div class="dvs">
<h1>Variables</h1>
<div class="cntnt"> <object data="./1. Variables.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
Orange <br/>Banana <br/>Banana <br/><class 'int'> <br/>John is 5 <br/>Name is John <br/>
</div>
<div class="dvs">
<h1>Numbers</h1>
<div class="cntnt"> <object data="./2. Numbers.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
7 <br>x: 2 y: 2.8 z: 3.0
</div>
<div class="dvs">
<h1>String</h1>
<div class="cntnt"><object data="./3. String.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
Lorem ... <br>e <br>llo <br>..13 <br>HELLO, WORLD! <br>Hello, World!Hello, World! <br>True <br>No, 'expensive' is NOT present. <br>I want 3 pieces of item 567 for 49.95 dollars. <br>'1 \2 <br>3 4 <br>
</div>
</div>
<h2 class="noSelect" style="margin:30px; text-align: center;">Array </h2>
<div class="all">
<div class="dvs">
<h1>List & Set</h1>
<div class="cntnt"><object data="./4. List-Touple-Set.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
#
</div>
<div class="dvs">
<h1>Dictionary</h1>
<div class="cntnt"><object data="./5. Dictionary.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
#
</div>
</div>
<h2 class="noSelect" style="margin:30px; text-align: center;">Looping </h2>
<div class="all">
<div class="dvs">
<h1>Loops</h1>
<div class="cntnt"><object data="./6. Loops.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
a is greater than b <br>4 <br>5 <br>apple <br>cherry <br>0 <br>1 <br>1 4 <br>
</div>
<div class="dvs">
<h1>Functions</h1>
<div class="cntnt"><object data="./7. Functions.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
Emil-Refsnes <br>Lowest number is-2 <br>followed by-35 <br>15 <br>22 <br>
</div>
</div>
<h2 class="noSelect" style="margin:30px; text-align: center;">Classes </h2>
<div class="all">
<div class="dvs">
<h1>Class & Obj</h1>
<div class="cntnt"><object data="./8.Classes & Objects.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
40
</div>
<div class="dvs">
<h1>Inheritance</h1>
<div class="cntnt"><object data="./9. Inheritance.py" font-size="25" width="300" height="400"></object></div>
<p class="output">Output</p>
John Doe
</div>
</div>
</body>
</html>