-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
141 lines (133 loc) · 5.58 KB
/
about.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!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>About</title>
<link href="./css/style.css" rel="stylesheet" type="text/css" />
<link href="./css/about.css" rel="stylesheet" type="text/css" />
<link href="http://fonts.cdnfonts.com/css/cocogoose" rel="stylesheet" />
</head>
<body>
<header>
<nav class="top-nav">
<ul class="navigation-links">
<li><img src="./assets/facebook.png" alt="Facebook" /></li>
<li><img src="./assets/twitter.png" alt="Twitter" /></li>
<li><a href="#">Logout</a></li>
<li><a href="#">MyPage</a></li>
<li><a href="#">Korean</a></li>
</ul>
</nav>
<div class="toolbar">
<a href="index.html"><img class="logo" src="./assets/htc-logo.png" alt="Logo" /></a>
<button type="button" class="mobile-menu-toggle"><img src="../assets/mobile_menu.png" alt="Mobile menu" class="toogle" /></button>
<nav class="nav-bar">
<ul class="navigation">
<li class="nav-item home_link"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="about.html">About</a></li>
<li class="nav-item"><a >Program</a></li>
<li class="nav-item"><a>Join</a></li>
<li class="nav-item"><a>Sponsor</a></li>
<li class="nav-item"><a>News</a></li>
</ul>
<button type="button" class="mobile-menu-close"><img src="../assets/close_mobile_menu.png" alt="Close" /></button>
<a class="campaign-btn" href="#">HTC Campaign</a>
</nav>
</div>
</header>
<main>
<section class="about">
<div class="about-content">
<!-- <p class="main-text-color">"Hello Sharing World"</p> -->
<h1 class="main-text-color">HEALTH-TECH CONFERENCE 2023</h1>
<div class="about-desc">
The HEALTH-TECH Conference is a dynamic and inspiring event that brings together innovators, experts, and industry leaders in the healthcare and technology fields. It provides a unique opportunity to explore the latest advancements and emerging trends in digital health, connected medical devices, AI applied to healthcare, telemedicine, and much more.
<p>Whether you are an ambitious entrepreneur, healthcare professional, investor, or researcher, the HEALTH-TECH Conference is a must-attend event to stay at the forefront of technological advancements revolutionizing the healthcare sector.</p>
</div>
<div class="contact">
<p>Please contact us for further questions about HEALTH-TECH Conference 2023!</p>
<a>[email protected]</a>
</div>
</div>
</section>
<section class="section about-logo">
<div class="program-heading">
<h2 class="program-title">Heath-Tech Conference Logo</h2>
<span class="line"></span>
</div>
<p>
The HEALTH-TECH conference 2023 logo was decided through the logo
competition from 8th.june to 7th.jully <br/>
After online voting and Selection Committee's judjing process, the logo from Brice Yaba won the prize.
</p>
<div class="logo">
<img src="./assets/htc-logo.png" alt="logo" />
</div>
</section>
<section class="section about-past">
<div class="program-heading">
<h2 class="program-title">See the past Health-Tech Conferences</h2>
<span class="line"></span>
</div>
<p>
Take a look at the recent HEALTH-TECH Conferences which took place in Accra and Legos.
</p>
<div class="content">
<div class="last-submit">
<img src="./assets/htc2019.jpg" alt="cardio" />
<div class="depart">
<p class="year">2019</p>
<p>
HEALTH-TECH Conference 2019
</p>
</div>
</div>
<div class="last-submit">
<img src="./assets/htc2020.jpg" alt="plastic" />
<div class="depart">
<p class="year">2020</p>
<p>
HEALTH-TECH Conference 2020
</p>
</div>
</div>
</div>
</section>
<section class="partners">
<div class="container">
<h2 class="section-title">Our Partners</h2>
<span class="line"></span>
<div class="partners-list">
<div class="partner-item">
<img class="partner-logo" src="./assets/mozilla2.png" alt="Mozilla" />
</div>
<div class="partner-item">
<img class="partner-logo" src="./assets/google2.png" alt="Google" />
</div>
<div class="partner-item">
<img class="partner-logo" src="./assets/naver2.png" alt="Naver" />
</div>
<div class="partner-item">
<img class="partner-logo" src="./assets/kakao2.png" alt="Kakao" />
</div>
<div class="partner-item">
<img class="partner-logo" src="./assets/airbnb2.png" alt="Airbnb" />
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-img">
<img class="foot-img" src="./assets/htc-logo.png" alt="" />
</div>
<div class="footer-text">
2023 Health-Tech Conf Yaounde <br/>
© SOME RIGHTS RESERVED
</div>
</footer>
<script src="./js/script.js"></script>
</body>
</html>