-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (109 loc) · 6.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>IOLs</title>
<link rel="stylesheet" type="" href="iolcsslocalver.css" />
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2:wght@500&family=Manrope&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4b9ba14b0f.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="ioljslocal.js" defer></script>
</head>
<body>
<header>
<div class="topnav" id="myTopnav">
<a href="" class="active2">👁 Home</a>
<a href="#introduction">👁 About IOLs</a>
<a href="#cardarea">👁 IOL Options</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-eye"></i>
</a>
</div>
</header>
<section class="section intro" id="introduction">
<div class="intro_container">
<h1 class="introarea">
<img
class="intro_img"
alt="intraocular lens implant"
src="https://i.ibb.co/wpCw775/Hinterkammerlinse-01-fcm.jpg"
/>
</h1>
<h1 class="intro_title">Introduction to IOLs (Intraocular Lenses)</h1>
<div class="intro_text">
Intraocular lenses (often referred to simply as "IOLs" in the ophthalmology world) are the small plastic lens implants used to correct vision after a cataract has been removed. IOLs are generally made of flexible material such as silicone or acrylic glass. While the concept of a piece of plastic inside your eye may cause some hesitation, these materials are safe for implantation in the eye and survive longer than we do! You can think of an IOL as an internal pair of glasses or contact lenses which help to correct your vision. Just like the prescription in your glasses or contact lenses, an IOL contains a target prescription that can correct your vision for distance, mid-range, near vision, or a combination of these. In some cases, IOLs may correct vision such that you no longer need to wear glasses, though this highly depends on any preexisting ocular conditions you may have, the type of IOL you select, and the "prescription" or "target vision" you are aiming for. There are several different types of IOLs available on the market, and we will go over these!
</div>
</section>
<section class="section iolcards" id="cardarea">
<div class="card_container">
<div class="card">
<div class="card__face card__face--front">
<img class="card__img" src="https://i.ibb.co/3SJNsmG/Photo-Grid-1586980135186.jpg" />
<p class="card__p">
<strong class="card__p card__p--fronttitle">
Specific IOL Options:
</strong>
<span class="cardbutton_area">
<span class="card__button">Acrysof IQ (Alcon)</span>
<span class="card__button">Tecnis (Johnson & Johnson)</span>
<span class="card__button">enVista (Bausch & Lomb)</span>
</span>
</p>
</div>
<div class="card__face card__face--back">
<p class="card__p">
<strong>
<span class="card__p card__p--title"
>A Standard Single Vision IOL is monofocal, meaning that it can correct for either distance vision, mid-range, or near vision. Some people choose to aim for "monovision," which means one eye is set for distance, and the other eye is set for mid-range (computer) or near vision (reading.)
</span>
</strong>
<b>Pros:</b><br>
👁 Cost covered by insurance<br>
👁 Crisp, clear vision<br>
👁 Minimal glare, haloing<br>
<br>
<b>Cons:</b><br>
👁 May still require glasses<br>
👁 Does not correct for astigmatism
</p>
</div>
</div>
</div>
<div class="card_container">
<div class="card">
<div class="card__face card__face--front">
<img class="card__img" src="https://i.ibb.co/XJnft9V/Photo-Grid-1587181360355.jpg" /> <!-- PM UPDATE -->
<p class="card__p">
<span class="card__p card__p--title"
>
<strong class="card__p card__p--fronttitle">Specific IOL Options:
</strong>
<span class="cardbutton_area">
<span class="card__button">Acrysof IQ Toric IOL (Alcon)</span>
<span class="card__button">TECNIS® Monofocal Toric IOL (Johnson & Johnson)</span>
</span>
</p>
</div>
<div class="card__face card__face--back">
<p class="card__p">
<strong
><span class="card__p card__p--title"
>A Toric Single Vision IOL is similar to a Standard Single Vision IOL in that it is monofocal. The only major difference is that a Toric lens corrects for astigmatism, and there is usually some additional cost not covered by insurance as it is seen as a "nonessential upgrade." For people with astigmatism, a Toric lens may reduce the need for glasses.</span
></strong
>
<b>Pros:</b><br>
👁 Corrects for astigmatism<br>
👁 Reduced need for glasses<br>
<br>
<b>Cons:</b><br>
👁 Out of pocket cost<br>
👁 May have residual astigmatism<br>
👁 May still require glasses if optimal correction not achieved
</p>
</div>
</div>
</section>
</body>
</html>