-
Notifications
You must be signed in to change notification settings - Fork 0
/
e-shop1.hta
67 lines (64 loc) · 1.87 KB
/
e-shop1.hta
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
<html>
<head>
<title>Umbrella App1</title>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cairo&display=swap" rel="stylesheet">
<HTA:Application
APPLICATION="App1"
Scroll="yes"
Icon="appLogo.ico"
ID="HTAAPP"
VERSION="1.0"
MaximizeButton="no"
MinimizeButton="no"
Selection="no"
Border="thik"
/>
<script type="text/javascript">
window.resizeTo (600 , 400)
</script>
<style>
*{
font-family: 'Cairo', sans-serif;
}
h1{
color: red;
}
h2{
color: blue;
}
img{
border : 2px solid black;
}
marquee{
background-color: black;
color: white;
}
</style>
</head>
<body>
<center>
<h1>Online Application</h1>
<h2>المتجر الالكتروني</h2>
<marquee>C O M I N G _ S 0 0 N . . . e - s h o p #1</marquee>
<label>HTML</label><input type='radio'/>
<br>
<label>CSS</label><input type='radio'/>
<br>
<label>JS</label><input type='radio'/>
<hr>
<img src="https://png.pngtree.com/png-clipart/20200818/ourlarge/pngtree-coming-soon-purple-shape-png-image_2327348.jpg" width='100' height=''/>
<img src="https://w7.pngwing.com/pngs/24/553/png-transparent-m-learning-educational-technology-educational-game-learning-game-orange-logo-thumbnail.png" width='100' height=''/>
<img src="https://png.pngtree.com/png-vector/20211022/ourlarge/pngtree-coming-soon-banner-design-with-speaker-png-image_3999559.png" width='100' height=''/>
<br>
<img src="https://w7.pngwing.com/pngs/24/553/png-transparent-m-learning-educational-technology-educational-game-learning-game-orange-logo-thumbnail.png" width='350' height=''/>
<br>
<hr>
<p>Dev. by Adel MD | تصميم وبرمجة</p>
<p>be free to contact +967733477848,</p>
<p>[email protected]</p>
</center>
</body>
</html>