forked from NathanielOstrer/quantum_website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentions.html
126 lines (105 loc) · 4.32 KB
/
mentions.html
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
<html>
<head>
<link rel="shortcut icon" href="http://mitstrong.mit.edu/sites/default/files/favicon.ico">
<meta charset="utf-8">
<title>Quantum Mechanics</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./bootstrap.css" media="screen">
<link rel="stylesheet" href="bootswatch.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../bower_components/html5shiv/dist/html5shiv.js"></script>
<script src="../bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23019901-1']);
_gaq.push(['_setDomainName', "bootswatch.com"]);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!-- Navbar -->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">Quantum Mechanics</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="team.html">Team Members</a>
</li>
<li>
<a href="resources.html"> Resources </a>
</li>
<li>
<a href="contact.html"> Contact Us </a>
</li>
</ul>
<!-- Right navbar stuff -->
<!--
<ul class="nav navbar-nav navbar-right">
<li><a href="http://builtwithbootstrap.com/" target="_blank">Built With Bootstrap</a></li>
<li><a href="https://wrapbootstrap.com/?ref=bsw" target="_blank">WrapBootstrap</a></li>
</ul>
-->
</div>
</div>
</div>
</br></br></br>
<div class="container">
<div class="row">
<div class="col-md-1"></div>
<div class="col-lg-12">
<h2 id="type-blockquotes">Memorable Quotes</h2>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<div class="bs-component">
<blockquote>
<p>Who exactly are you?</p>
<small> Mr. Smith </small>
</blockquote>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<div class="bs-component">
<blockquote>
<p>It's 6 in the morning!</p>
<small> Random number dialed </small>
</blockquote>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<div class="bs-component">
<blockquote>
<p>Quantum mechanics (QM – also known as quantum physics, or quantum theory) is a branch of physics which deals with physical phenomena at nanoscopic scales where the action is on the order of the Planck constant. It departs from classical mechanics primarily at the quantum realm of atomic and subatomic length scales. Quantum mechanics provides a mathematical description of much of the dual particle-like and wave-like behavior and interactions of energy and matter. Quantum mechanics provides a substantially useful framework for many features of the modern periodic table of elements including the behavior of atoms during chemical bonding and has played a significant role in the development of many modern technologies. </p>
<small> Wikipedia </small>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</body>
</html>