This repository was archived by the owner on Feb 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrief.html
More file actions
78 lines (53 loc) · 2.62 KB
/
brief.html
File metadata and controls
78 lines (53 loc) · 2.62 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
<!doctype html>
<html>
<head> <!--copy paste the complete head in all the other documents!-->
<title> Brief </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--for browser to scale contents according to screen size-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- <link rel="stylesheet" type="text/css" href="css/w3.css">
<link rel="stylesheet" type="text/css" href="css/about.css"> -->
<!--following link to Google APIs-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.green-orange.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Arvo|Inconsolata|Nunito|Quicksand|Rubik">
<script src="js/brain.js"> </script>
<!--following link to Google APIs-->
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"> </script>
<style>
h1 /* for main headings & titles */
{
font-family: arvo;
font-size: 60px;
line-height: 150%;
}
h2 /* for subtitles & questions */
{
font-family: arvo;
font-size: 40px;
line-height: 150%;
}
h3 /* for regular text */
{
font-family: inconsolata;
font-size: 20px;
line-height: 80%;
}
@media (max-width: 400px) /* this is the @media query used to optimize the page for mobile */
{
}
</style>
</head>
<body>
<br> <br> <div style="width: auto" id="loading" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"> </div> </center>
<h2> > But wait, what the heck is Python? A snake? </h2>
<h3> Python is an extremely efficient, high-level, object oriented programming language (OOP). </h3>
<h3> And no, it is not a 🐍, even though it is the same age as Taylor Swift. </h3>
<h2> > So why use Python instead of Java or C++? </h2>
<h3> Python is designed to be highly readable. It uses English keywords more frequently whereas other languages use complicated terminologies. </h3>
<h3> It even has fewer syntactical constructions compared to other programming languages, meaning less curly braces and more indentations. </h3>
<h2> > Okay, give me some history. </h2>
<h3> Python was created by Guido van Rossum when he was "bored" during Christmas, and was publicly available in the year 1991. </h3>
<center> <button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--primary" onclick="window.location.href='account.html'"> <font color=#ECEFF1> SIGN UP </font> </center> </button>
<br> <br> <div style="width: auto" id="loading" class="mdl-progress mdl-js-progress mdl-progress__indeterminate"> </div> </center>
</body>
</html>