This repository was archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-cheatsheet.html
More file actions
85 lines (76 loc) · 2.17 KB
/
python-cheatsheet.html
File metadata and controls
85 lines (76 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<!--Start of Head-->
<head>
<!--Start Title-->
<title>
Python Cheatsheet
</title>
<!--End Title-->
<!--Start of Meta-->
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!--End of Meta-->
<!--Start of CSS Connect-->
<link type="text/css" rel="stylesheet" href="css/global.css"/> <!--css in every file-->
<link type="text/css" rel="stylesheet" href="css/code-options.css"/> <!--css in the cheatsheet files-->
<link type="text/css" rel="stylesheet" href="css/python-cheatsheet.css"/> <!--Css for this file--> <!--Change 'template' to the html file's name00>
<!--End of CSS Connect-->
</head>
<!--End of Head-->
<!--Start of Body-->
<body>
<!--Start Page Title-->
<h1 class="title">
Python Cheatsheet
</h1>
<!--End Page Title-->
<div class="main"> <!--Headings are put before this-->
<!--Start Introduction-->
<p>
<!--Introduction To Doc-->
</p>
<!--End Introduction-->
</div>
<!--Start Sidebar-->
<div class="sidenav">
<br> <!--Makes the logo look a bit nicer on webpage-->
<!--Start Logo-->
<h1>
<a href="homepage.html" id="cs"><span id="c">Coding</span><span id="s">Sheets</span></a> <!--It won't bold but it is intenteded to bold when you hover over it-->
</h1>
<!--End Logo-->
<!--Start Heading List-->
<ul> <!--The List is invisible on the page-->
<li>
<a href="#<!--heading-->"></a>
</li>
</ul>
<!--End Heading List-->
</div>
<!--End Sidebar-->
<!--Start Key Terms-->
<h2> <!--This is only if it is a code file-->
Key Term
</h2>
<div class="main">
<p>
<!--Put Text here-->
</p>
<!--Start of Key Term Table-->
<div class="table">
<!--Start Main Table-->
<ul>
<li>
<span class="bold"><!--Term Name-->:</span> <!--Term Meaning-->
</li>
<!--Repeat for each term-->
</ul>
<!--End Main Table-->
</div>
<!--End of Key Term Table-->
</div>
<!--End of Key Terms-->
</body>
<!--End of Body-->
</html>