-
Notifications
You must be signed in to change notification settings - Fork 0
/
find-on-page-sample.html
37 lines (37 loc) · 2.5 KB
/
find-on-page-sample.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
<!DOCTYPE html>
<html>
<head>
<style>
iframe {
height: 500px;
width: 100%;
}
</style>
</head>
<body>
<!-- Search for: climbng paths -->
<div> 1 Mount Everest is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The China Nepal
border runs across its summit point. Its elevation (snow height) of 8,848.86 m (29,031.7 ft) was most recently established in 2020 by the Nepali and Chinese
authorities. Mount Everest attracts many climbers, some of them highly experienced mountaineers. There are two main <i>climbing routes</i>, one approaching the
summit from the southeast in Nepal (known as the 'standard route') and the other from the north in Tibet. While not posing substantial technical
climbing challenges on the standard route, Everest presents dangers such as altitude sickness, weather, and wind, as well as significant hazards from avalanches
and the Khumbu Icefall. As of 2019, over 300 people have died on Everest, many of whose bodies remain on the mountain.
<span>climbng paths</span> <span>climbng paths</span> <span>climbng paths</span></div>
<iframe src="find-on-page-in-iframe-sample.html"></iframe>
<div> 3 Mount Everest is Earth's highest mountain above sea level, located in the Mahalangur Himal sub-range of the Himalayas. The China Nepal
border runs across its summit point. Its elevation (snow height) of 8,848.86 m (29,031.7 ft) was most recently established in 2020 by the Nepali and Chinese
authorities. Mount Everest attracts many climbers, some of them highly experienced mountaineers. There are two main climbing routes, one approaching the
summit from the southeast in Nepal (known as the 'standard route') and the other from the north in Tibet. While not posing substantial technical
climbing challenges on the standard route, Everest presents dangers such as altitude sickness, weather, and wind, as well as significant hazards from avalanches
and the Khumbu Icefall. As of 2019, over 300 people have died on Everest, many of whose bodies remain on the mountain.
climbng paths climbng paths climbng paths </div>
<script>
window.setTimeout(() => {
let span = document.createElement('span');
span.append('climbng paths');
let div = document.querySelector('div');
div.append(' ', span);
}, 10000);
</script>
</body>
</html>