-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path4thproduct.html
109 lines (106 loc) · 5.56 KB
/
4thproduct.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pacific NorthWest X-Ray</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./product.css">
<link rel="stylesheet" href="./Header&Footer.css">
</head>
<body>
<header>
<div class="logo-div">
<img src="1706433779624-Standard.png" class="logo">
</div>
<div class="title-div">
<a href="./pnwx.html" class="title-deco"><h1 class="title">PACIFIC NORTHWEST X-RAY</h1></a>
<nav>
<ul class="menu">
<li><a href='./pnwx.html'>Home</a></li>
<li><a href='./Equipment.html'>Equipment</a></li>
<li><a href='./Accessories.html'>Accessories</a></li>
<li><a href='./Supplies.html'>Supplies</a></li>
<li><a href='./PARTS.html'>Parts</a></li>
</ul>
</nav>
</div>
<div class="icon-div">
<a><img src="907-200.png" alt="" class="search-icon"></a>
<a href="./Account.html" ><img class="icon" src="user_account_icon_145918.png" alt=""></a>
<a href="./checkout.html" class="cart">
<img class="icon" src="shopping-cart.png" alt="">
<span class="badge" id="cartCount">0</span>
</a>
</div>
</header>
<section class="product-box">
<div class="curved-box">
<h1 id="product-name">Advanced Survey Meter</h1>
<h2>INTRODUCTION</h2>
<p>The ASM-990 series are easy-to-use instruments that detect alpha, beta, gamma, or x-ray radiation within an operating range of 0.1 mR/hr to 1 R/hr or 1 to 5,000,000 CPM, depending on the probe selection. Visual indication of measured values, as well as selectable parameters, are displayed on the analog/digital display.</p>
<h2>APPLICATION</h3>
<p>The ASM-990 series are designed to meet the high technology requirements of health physics, medical physics, and nondestructive testing applications. Radiation safety officers (RSO), nuclear medicine laboratories, diagnostic x-ray and hospital emergency room technicians, and environmental health physicists will appreciate this intelligent survey meter with its cell phone-like multi-function key for easy menu navigation.</p>
<h2>FEATURES</h4>
<ul>
<li>Survey Mode feature allows user to store up to 5 separate survey sequences.</li>
<li>Infrared Data (IrDA) port.</li>
</ul>
<h2>LCD READOUT</h5>
<ul>
<li>160 x 160 graphical LCD display shows digitzed average of the bar graph value</li>
<li>LCD also displays selected measurement units, status icons, and real time clock</li>
</ul>
<h2>PUSHBACK CONTROLS</h6>
<ul>
<li>Light activates a background light for a preset or indefinite amount of time.</li>
<li>Sel activates the menu systems; allows user to choose particular settings, etc.</li>
</ul>
</div>
<div class="curved-box-image">
<img src="./0002.jpeg" alt="survey-meter" class="box-image" id="product-image">
</div>
</section>
<section class="price-cart-box">
<button class="add-to-cart" id="addToCartBtn" onclick=addToCart()>ADD TO CART</button>
<div class="price">
<p id="price">$3836.00</p>
</div>
</section>
<footer>
<div>
<div class="footers">
<ul class="list">
<li><a class="footer_head" href='#'>ABOUT US</a></li>
<li><a href='#'>Specialities</a></li>
<li><a href='#'>Locations</a></li>
<li><a href='#'>Help Center</a></li>
<li><a href='#'>LeaderShip Team</a></li>
<li><a href='#'>Insurance Partners</a></li>
</ul>
</div>
<div class="footers">
<ul class="list">
<li><a class="footer_head" href='#'>SHOP WITH US</a></li>
<li><a href='#'>About PNWX</a></li>
<li><a href='#'>Your Lists</a></li>
<li><a href='#'>Your Orders</a></li>
<li><a href='#'>Your Account</a></li>
<li><a href='#'>Your Addresses</a></li>
</ul>
</div>
<div class="footers">
<ul class="list">
<li><a class="footer_head" href='#'>LEGAL</a></li>
<li><a href='#'>Privacy Policy</a></li>
<li><a href='#'>Patient Rights</a></li>
<li><a href='#'>Terms & Conditons</a></li>
<li><a href='#'>Return Policy</a></li>
<li><a href='#'>Cancellation Policy</a></li>
</ul>
</div>
</div>
<p class = "footer_copyright">©1997 2024 Pacific Northwest X-Ray Inc. - Sales & Marketing Division - All Rights Reserved</p>
</footer>
<script src="./addtoCartButton.js"></script>
</body>
</html>