-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.html
More file actions
54 lines (52 loc) · 1.84 KB
/
Copy pathpython.html
File metadata and controls
54 lines (52 loc) · 1.84 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Language</title>
<link rel="icon" href="1.jpg" type="image/x-icon">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
.boxdiv {
text-align: center;
max-width: 800px;
margin: 20px;
}
img {
max-width: 100%;
height: 100px;
margin: 10px auto;
}
.boxdiv{
background-color: aliceblue;
border: solid;
border-color: cornflowerblue;
border-width: 1px;
margin: 0px 2px 15px 2px;
padding: 0px 17px 5px 17px;
border-radius: 25px;
font-family: Verdana, Geneva, sans-serif;
}
</style>
</head>
<body>
<div class="boxdiv">
<h1>Python Programming Language</h1>
<p>
<b>Python:</b> Python is a high-level, interpreted language known for its readability and simplicity. It supports multiple programming paradigms, including procedural, object-oriented, and functional programming. Python is widely used in web development, data analysis, artificial intelligence, and scripting due to its extensive libraries and ease of learning.
</p>
<a href="https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/c/c3/Python-logo-notext.svg" alt="python">
</a>
</div>
</body>
</html>