-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclone.htm
More file actions
86 lines (78 loc) · 1.61 KB
/
clone.htm
File metadata and controls
86 lines (78 loc) · 1.61 KB
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>
<head>
<title>ECOM GTX ACADEMY</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
nav {
display: flex;
justify-content: space-between;
padding: 10px;
background-color: #f1f1f1;
}
nav a {
color: #333;
text-decoration: none;
padding: 10px;
}
main {
padding: 20px;
}
.hero {
text-align: center;
padding: 50px 0;
}
.hero h1 {
font-size: 36px;
margin-bottom: 20px;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
}
.join-now {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
</style>
</head>
<body>
<header>
<h1>ECOM GTX ACADEMY</h1>
</header>
<nav>
<a href="#">
<i class="fa fa-bars"></i>
</a>
<a href="#">
<i class="fa fa-search"></i>
</a>
<a href="#">
<i class="fa fa-shopping-cart"></i>
</a>
</nav>
<main>
<section class="hero">
<h1>Sharing everything I've learned over the last 4 years Dropshipping</h1>
<p>Join now to learn from our experts!</p>
<button class="join-now">JOIN NOW</button>
</section>
</main>
</body>
</html>