-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (71 loc) · 3.49 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Basic optics</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
</head>
<body>
<div class="space">
<nav class="navbar navbar-light bg-light">
Welcome!
</nav>
<p></p>
<h1>Basic laser optics</h1>
<div class="box">
<p>
This page is a quick introduction to some optical phenomena.
</p>
<hr>
<p class="mb-0">
If you are not familiarized with the topics, don't worry! The contents are very introductory. However, I suggest you visit them in the order they're displayed to make it easier.
</p>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-5">
<div class="card">
<img src="images/refra.svg" class="card-img-top" alt="Refraction rays">
<div class="card-body">
<h5 class="card-title">Laser refraction</h5>
<a href="refra.html" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
<div class="col-sm-5">
<div class="card">
<img src="images/polarization.svg" class="card-img-top" alt="Wave polarized">
<div class="card-body">
<h5 class="card-title">Polarization</h5>
<a href="polar.html" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-sm-5">
<div class="card">
<img src="images/ref.svg" class="card-img-top" alt="Refraction rays">
<div class="card-body">
<h5 class="card-title">Total reflection</h5>
<a href="ref.html" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
<div class="col-sm-5">
<div class="card">
<img src="images/goos.svg" class="card-img-top" alt="Goos-Hänchen shift">
<div class="card-body">
<h5 class="card-title">Goos-Hänchen effect</h5>
<a href="goos.html" class="btn btn-primary">Learn more</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>