-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.html
More file actions
23 lines (23 loc) · 1.35 KB
/
Copy pathpython.html
File metadata and controls
23 lines (23 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>My WebPage</title>
</head>
<body>
<div class="navbar navbar-expand-sm">
<ol class="navbar-nav">
<li class="navbar-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="navbar-item"><a class="nav-link" href="css.html">CSS</a></li>
<li class="navbar-item"><a class="nav-link" href="html.html">HTML</a></li>
<li class="navbar-item"><a class="nav-link" href="js.html">JavaScript</a></li>
<li class="navbar-item"><a class="nav-link" href="python.html">Python</a></li>
</ol>
</div>
<div class="container">
<p>Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace. Its language constructs and object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects.</p>
</div>
</body>
</html>