-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
115 lines (115 loc) · 4.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- link custom css file -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- responsive css file -->
<link rel="stylesheet" href="assets/css/responsive.css">
<title>Template clone by Soriful Chalehin.</title>
</head>
<body>
<!-- header -->
<header>
<div class="container">
<a href="#">
<img src="images/logo.svg">
</a>
<input type="checkbox" id="manu" hidden>
<nav>
<a href="#mission-section">Mission</a>
<a href="#product-section">Product</a>
<a href="#contact-section">Contact</a>
</nav>
<!-- responsive manu icon -->
<label for="manu">
<img src="images/menu.png">
</label>
</div>
</header>
<!-- Banner section -->
<section class="banner-section">
<div class="container flex">
<div class="banner-left w50">
<h4>PSILOCYBIN PIONEERS</h4>
<h1>Producing innovative naturally sourced Psilocybin products tackling unmet medical needs</h1>
</div>
<div class="banner-right w50">
<img src="images/hero-section-image.jpg" >
</div>
</div>
</section>
<!-- Mission section -->
<section class="mission-section" id="mission-section">
<div class="container">
<div class="background">
<div class="msics-mission">
<h4>MSICS'S MISSION</h4>
<h2>A new era of medicine</h2>
<p>To revolutionize global mental healthcare, we harness the power of naturally-sourced Psilocybin, producing cutting-edge products tailored for pharmaceutical applications, to effectively address the world's pressing health needs</p>
</div>
</div>
</div>
</section>
<!-- Product section -->
<section class="product-section" id="product-section">
<div class="container flex">
<div class="product-left w50">
<h4>MSICS'S PRODUCT</h4>
<h1>MSX-06 - An innovative Psilocybin drug</h1>
<p>
MSICS operates an innovative GMP production facility producing MSX-06 - MSICS's flagship naturally-sourced Psilocybin product
<br> <br> MSX-06 is currently undergoing trials in collaboration with renowned hospitals, to treat medical conditions such as depression, OCD, anxiety, and eating disorders
</p>
</div>
<div class="product-right w50">
<img src="images/lab-1.jpeg">
<img src="images/lab-2.jpeg">
<img src="images/lab-3.jpeg">
</div>
</div>
</section>
<!-- Our medical partners section -->
<section class="our-medical-partners">
<div class="container">
<h1>Our medical partners</h1>
<div class="partners">
<img src="images/logo1.png">
<img src="images/logo2.png">
<img src="images/logo3.png">
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact-section" id="contact-section">
<div class="container flex">
<div class="contact-left w50">
<h1>Contact us</h1>
<form action="#">
<input type="text" placeholder="Soriful Chalehin" required> <br>
<input type="email" placeholder="developersoriful@gmail.com" required><br>
<textarea placeholder="Message..."></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
<div class="contact-right w50">
<h2 class="author-details">
This template is clone by <a class="author" href="https://github.com/soriful-chalehin" target="_blank">Soriful Chalehin</a> for practice only.
</h2>
</div>
</div>
</section>
<!-- Footer section -->
<section class="footer-section" id="contact-section">
<div class="container flex">
<div class="footer-left w50">
Copyright © 2024 <a href="https://www.msicspharma.com/">MSICS pharma</a> - All Rights Reserved
</div>
<div class="footer-right w50">
Powered By : <a href="https://github.com/soriful-chalehin">Developer Soriful Chalehin</a>.
</div>
</div>
</section>
</body>
</html>