-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathPythonindex.html
More file actions
84 lines (84 loc) · 3.58 KB
/
Copy pathPythonindex.html
File metadata and controls
84 lines (84 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="Pythonstyle.css">
<title>About Python</title>
</head>
<body>
<div class="container">
<div id="logo_search">
<div id="logo">
<img src="images/python-logo.png" alt="python">
</div>
<div id="search">
<div id="search_bar">
<input type="text" placeholder="Search">
</div>
<div id="gobtn">GO</div>
</div>
</div>
<div id="menubar">
<nav>
<a href="#">About</a>
<a href="#">Downloads</a>
<a href="#">Documentation</a>
<a href="#">Community</a>
<a href="#">News</a>
<a href="#">Events</a>
</nav>
</div>
<div id="menucontent">
<div id="navigation">
<a href="#">Docs</a>
<a href="#">Audio/Visual Talks</a>
<a href="#">Beginner's Guide</a>
<a href="#">Developer's Guide</a>
<a href="#">PEP Index</a>
<a href="#">Python Books</a>
<a href="#">FAQ</a>
</div>
<div id="content">
<p1>First appearing in 1991, Python is a general-purpose, high-level, interpreted programming language whose design focus emphasizes code readability. Whether for processing/analyzing data to powering many well-known applications. Python is not only a great language for new programmers but also powerful enough for seasoned developers building whatever they can think of.</p1>
<p2>Beautiful is better than ugly;</p2>
<p2>Explicit is better than implicit;</p2>
<p2>Simple is better than complex;</p2>
<p2>Complex is better than complicated;</p2>
<p2>Readability counts;</p2>
<p3>The Zen of Python</p3>
</div>
</div>
<div id="coulmn2">
<div class="info">
<h3>Getting Started</h3>
<p>Python can be easy to pick up whether you're a first time programmer or you're experienced with other languages. The following pages are a useful first step to get on your way writing programs with Python!</p>
<ul>
<li>Beginner's Guide Programmers</li>
<li>Beginner's Guide, Non-Programmers</li>
<li>Code Sample and snippets for Beginners</li>
</ul>
</div>
<div class="info">
<h3>Applications</h3>
<p>The Python Package Index (PYPI) hosts thousands of third-party modules for Python. Both Python's standard library and the community-contributed modules allow for endless possibilites.</p>
<ul>
<li>Web and Internet Development</li>
<li>Database Access</li>
<li>Desktop GUIs</li>
<li>Network Programming</li>
</ul>
</div>
</div>
<div id="footer">
<div id="level1">
<a href="#">Help and General Contact</a>
<a href="#">Diversity Initiatives</a>
<a href="#">Submit Website Bugs</a>
</div>
<div id="copyright">Copyright @ 2001-2016</div>
</div>
</div>
</body>
</html>