-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (84 loc) · 3.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ZFTC Landing Page</title>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div class="header">
<div class="logo">
<img src="img/logo.jpg" alt="ZFTC Logo"/>
<div class="name">ZFTC</div>
</div>
<div class="nav">
<div class="navlink">
<a href="/resources/products.html">Products</a>
</div>
<div class="navlink">
<a href="/resources/about.html">About</a>
</div>
<div class="navlink">
<a href="/resources/register.html">Register</a>
</div>
</div>
</div>
<div class="content">
<div class="main">
<div class="left">
<div class="hero">
This Website is Awesome
</div>
<div class="statement">
This is a subtext that is smaller and lower contrast. Fill this baby up with messages about medicine being important
</div>
<div><button class="top">Sign up</button></div>
</div>
<div class="right"><img src="img/corpo.jpg" alt="corpo image"/></div>
</div>
<div class="carousel">
<div class="title">Our Products</div>
<div class="products">
<div class="product">
<img src="img/herb.jpg" alt="herbal products"/>
<div class="caption">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Herbal Products</div>
</div>
<div class="product">
<img src="img/pills.jpg" alt="pharm products"/>
<div class="caption">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Chinese Pharmacuticals</div>
</div>
<div class="product">
<img src="img/more-pills.jpg" alt="more pharm products"/>
<div class="caption">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Pharmacuticals</div>
</div>
<div class="product">
<img src="img/remedy.jpg" alt="herbal remedies"/>
<div class="caption">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Herbal Remedies</div>
</div>
</div>
</div>
<div class="testimonial">
<div class="quote">
If you change your mindset, you have the ability to change your whole world. I am writing more to see if the wrap works as intended
</div>
<div class="attribute">
-Damien Thomas
</div>
</div>
<div class="end">
<div class="action">
<div class="words">
<span class="statement">Call to Action! Do IT!</span>
<span>SIGN UP! JUST DO IT! YOU CAN DO IT!</span>
</div>
<div><button id="bottom">Sign up</button></div>
</div>
</div>
</div>
<div class="footer">
<span>Copyright © ZhengFeng Tradecorp 2023</span>
<span>All rights Reserved</span>
</div>
</body>
</html>