forked from ahyahy/OneScriptClientServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreenshot.html
More file actions
65 lines (65 loc) · 2.66 KB
/
screenshot.html
File metadata and controls
65 lines (65 loc) · 2.66 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Скриншоты</TITLE>
<META content="text/html; charset=Windows-1252" http-equiv="Content-Type">
<LINK rel="stylesheet" type="text/css" href="styleos.css">
<script defer src="mobil.js"></script>
</HEAD>
<body>
<header>
<section>
<div>
<div id="logo"><big><big><big>Клиент-сервер<br><small><small>для сценарного языка</small></small> OneScript </big></big></big></div>
</div>
<div style="direction: rtl; overflow:hidden; padding: 8px 0px 0px 0px; margin-top:-7px;">
<DIV id=div22>
<input type="checkbox" id="toggle">
<label id="label1" class="hamburger-icon" onclick="label1click()"><div></div><div></div><div></div></label>
</DIV>
<nav>
<a onclick="navclick(event)" href="index.html">Главная</a>
<a onclick="navclick(event)" href="screenshot.html">Скриншоты</a>
<a onclick="navclick(event)" href="howworks.html">Как это работает</a>
<a onclick="navclick(event)" href="doc.html">Документация</a>
<a onclick="navclick(event)" href="down.html">Скачать</a>
<a onclick="navclick(event)" href="kont.html">Контакты</a>
<input type="checkbox" id="toggle2">
<a id="mobil" onclick="mobilClick()">`</a>
</nav>
</div>
</section>
</header>
<section>
<p>Для примера снимки экрана.</p>
<figure>
<div style="display: flex; flex-wrap: wrap;">
<div style="flex-direction: row;">
<div style="flex-direction: column;">
<img id="myImg01" src="Pic1.jpg" alt="Сервер" onclick="clickimg(event)">
<div id="myModal01" class="modal">
<span id="close01" class="close">×</span>
<img id="img01" class="modal-content">
<div id="caption">Сервер</div>
</div>
</div>
<div style="flex-direction: column;">Сервер</div>
</div>
<p></p>
<div style="flex-direction: row;">
<div style="flex-direction: column;">
<img id="myImg02" src="Pic2.jpg" alt="Клиент" onclick="clickimg(event)">
<div id="myModal02" class="modal">
<span id="close02" class="close">×</span>
<img id="img02" class="modal-content">
<div id="caption">Клиент</div>
</div>
</div>
<div style="flex-direction: column;">Клиент</div>
</div>
</div>
</figure>
<p></p>
</section>
</body>
</HTML>