-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
154 lines (119 loc) · 5.27 KB
/
index1.html
File metadata and controls
154 lines (119 loc) · 5.27 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PyWORLD</title>
<link href="css/foundation.css" rel="stylesheet" />
<link href="css/header.css" rel="stylesheet" />
<link href="css/icon-fonts.css" rel="stylesheet" />
<link href="css/hover.css" rel="stylesheet" />
<link href="css/footer-bottom.css" rel="stylesheet" />
<link href="css/menu.css" rel="stylesheet" />
<link href="css/blog.css" rel="stylesheet" />
<link href="css/fonts.css" rel="stylesheet" />
<link href="css/color.css" rel="stylesheet" />
<script src="js/modernizr.js"></script>
</head>
<body>
<div class="fixed">
<!-- Header and Nav -->
<nav class="top-bar" data-topbar>
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<center>
<h1>
<a href="./">PyWORLD
</a>
</h1>
</center>
</li>
<li class="toggle-topbar menu-icon">
<a href="#">
<span>Menu</span>
</a>
</li>
</ul>
<section class="top-bar-section">
<!-- Left Nav Section -->
<ul class="right">
<li class=" menu-icon" id="home-icon">
<a href="./">
<i class="icon-home"></i>
<span class="name">Home</span>
</a>
</li>
</ul>
<ul class="title-area" id="menu-titles">
<!-- Title Area -->
<li class="name hidden" id="home-text">
<h1>
<a href="./">Home
</a>
</h1>
</li>
<li class="name hidden" id="blog-text">
<h1>
<a href="/blog/">Blog
</a>
</h1>
</li>
<li class="name hidden" id="contact-text">
<h1>
<a href="/#contact">Contact
</a>
</h1>
</li>
</ul>
</section>
</nav>
</div>
<div class="content-wrapper">
<section id="main-content">
<!-- Main Page Content and Sidebar -->
<div class="row">
<!-- Main Blog Content -->
<div class="large-9 columns" role="content">
<article>
<h1><a href="#">Python</a></h1>
<p class="article_pub-date">Published
<time datetime="2014-05-13" pubdate="">Nov 10, 2019 </time>
</p>
<div class="row">
<div class="large-12 columns">
<img class="float-right" src="img/images.jpg" />
<p>Python is a powerful multi-purpose programming language created by Guido van Rossum.
It has simple easy-to-use syntax, making it the perfect language for someone trying to learn computer programming for the first time.
This is a comprehensive guide on how to get started in Python, why you should learn it and how you can learn it.</p>
<p>Following Python section contains a wide collection of Python programming examples. The examples are categorized based on the topics including List, strings, dictionary, tuple, sets and many more. Each program example contains multiple approaches to solve the problem.</p>
</div>
</div>
</article>
<hr />
<article>
<h1><a href="#">Python Topics</a></h1>
<div class="row">
<div class="large-12 columns">
<a href="basic_python.html">Basics in python</a><br><br>
<a href="Loops.html">Loops</a><br><br>
<a href="control structures.html">Control Structures</a><br><br>
<a href="datatypes.html">Datatypes</a><br><br>
</div>
</div>
</article>
</div>
<!-- End Main Content -->
<!-- Sidebar -->
<!-- End Sidebar -->
</div>
<!-- End Main Content and Sidebar -->
</section>
</div>
<script src="js/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>