-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (77 loc) · 3.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DOMAIN</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="dcontainer">
<h1 class="dptitle">Domain Page</h1>
<div class="image-container">
<div class="image">
<img src="./assets/business.webp" alt="" onclick="Display1()"/>
<h2 class="centered">Innovate for Bussiness</h2>
</div>
<div class="image">
<img src="./assets/health.webp" alt="" onclick="Display2()"/>
<h2 class="centered">Innovate for Healthy Living</h2>
</div>
<div class="image">
<img src="./assets/security.webp" alt="" onclick="Display3()"/>
<h2 class="centered">Innovate for Security</h2>
</div>
<div class="image">
<img src="./assets/society.webp" alt="" onclick="Display4()"/>
<h2 class="centered">Innovate for Society</h2>
</div>
<div class="image">
<img src="./assets/sustainable_world.webp" alt="" onclick="Display5()"/>
<h2 class="centered">Innovate for Sustainable World</h2>
</div>
</div>
<div class="popup-text">
<span onclick="Hide1()">×</span>
<h1 class="domain-title">Innovate for Bussiness</h1>
<diiv class="textt">
<p class="text" id="t1">
Bring out the positive changes , introduce new
workflows boosting the productivity of business models to stand out in
the Industrial space !
</p>
</diiv>
</div>
<div class="popup-text" id="t2">
<span onclick="Hide2()">×</span>
<h1 class="domain-title">Innovate for Healthy Living</h1>
<p class="text">
Develop innovative solutions for improving healthcare system to help cater current medical conditions.
</p>
</div>
<div class="popup-text" id="t3">
<span onclick="Hide3()">×</span>
<h1 class="domain-title">Innovate for Security</h1>
<p class="text">
In recent time security and privacy are major concern. Propose new groundbreaking ideas using cutting edge technologies for improving people safety.
</p>
</div>
<div class="popup-text" id="t4">
<span onclick="Hide4()">×</span>
<h1 class="domain-title">Innovate for Society</h1>
<p class="text">
Implement technology in ingenious ways for the benefit and development of society and to enhance the way we work and live !
</p>
</div>
<div class="popup-text" id="t5">
<span onclick="Hide5()">×</span>
<h1 class="domain-title">Innovate for Sustainable World</h1>
<p class="text">
Support the world by developing innovative, effective strategies and business , shaping them to meet the 'Environmental Challenges' !
</p>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>