-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (137 loc) · 5.02 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
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
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CodeMaster Is A WebsiteWhere You Can See The Power Of Html Css And JavaScript">
<meta name="keywords" content="HTML,Css,JavaScript">
<title>CodeMaster-Home</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="shortcut icon" href="img/programming.png" type="image/x-icon">
</head>
<body>
<div class="nav">
<nav>
<ul>
<li>
<a href="/CodeMaster"><img src="img/programming.png" alt="img"></a>
<a href="/CodeMaster">Home</a>
<a href="#titlediv">About</a>
<a href="#pricing">Pricing</a>
<a href="#contact">Contact us</a>
</li>
</ul>
</nav>
</div>
<!--Title Of The Page-->
<div class="titlediv" id="titlediv">
<h1 class="titlenew">Welcome To CodeMaster.Learn <span id="course"></span>With Me</h1>
<p>CodeMaster Is A Website Where You Can See The Power Of Html,Css Ans Javascript.It Is My Perssonal Portfolio Website.<br> All The Source Code Of The Website Is Available On GitHub.<br>This Is Not Only A Website,This Is A Power Of HTML,CSS And JavaScript</p>
<button id="github"><a href="https://github.com/Akashmishra1209/" target="_blank">Visit GitHub</a></button>
</div>
<!--Price Table-->
<div id="price">
<h2 style="text-align:center; margin: 45px; color: blue;">Our Teaching Charges</h2>
<div class="columns">
<ul class="price">
<li class="header">Free</li>
<li class="grey">$0/ year</li>
<li>Telegram Group</li>
<li>Youtube Videos</li>
<li>CodeMaster Website</li>
<li>GitHub Page</li>
<li class="grey"><a href="#" class="button" onclick="free()">Explore Now</a></li>
</ul>
</div>
<div class="columns">
<ul class="price">
<li class="header" style="background-color:#04AA6D">Pro</li>
<li class="grey">$ 5 / year</li>
<li>Online Teaching</li>
<li>Daily Test</li>
<li>Free Ebooks</li>
<li>Free GitHub Copilot</li>
<li class="grey"><a href="#" class="button" onclick="pro()">Buy Now</a></li>
</ul>
</div>
<div class="columns">
<ul class="price">
<li class="header">Premium</li>
<li class="grey">$ 10 / year</li>
<li>Includs PRO Plan</li>
<li>Online Teaching Free</li>
<li>Free Books</li>
<li>HandWritten Notes PDFs</li>
<li class="grey"><a href="#" class="button" onclick="prem()">Buy Now</a></li>
</ul>
</div>
</div>
<!--Contact-->
<div id="contact">
<h2 style="text-align: center; align-items: center; color: blue; margin: 15px;">Contact Us</h2>
<div class="container">
<form action="/CodeMaster" onsubmit=" alert('DearYour Query Has Been Saved Successfully.')">
<div class="row">
<div class="col-25">
<label for="fname">First Name</label>
</div>
<div class="col-75">
<input type="text" id="fname" name="firstname" placeholder="Your name.." required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="lname">Last Name</label>
</div>
<div class="col-75">
<input type="text" id="lname" name="lastname" placeholder="Your last name.." required>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="country">Country</label>
</div>
<div class="col-75">
<select id="country" name="country">
<option value="deafult">Select A Country</option>
<option value="india">India</option>
<option value="australia">Australia</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
</select>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="subject">Subject</label>
</div>
<div class="col-75">
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"
required></textarea>
</div>
</div>
<br>
<div class="row" style="text-align: center; align-items: center;">
<input type="submit" style="text-align: center; align-items: center;">
</div>
</form>
</div>
</body>
<script src="js/script.js"></script>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<!-- Load library from the CDN -->
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script>
var typed = new Typed('#course', {
strings: ['Html', 'Css', 'JavaScript', 'PHP', 'Python', 'Java', 'jQuery', 'C', 'C++', 'Many Languages'],
typeSpeed: 200,
});
</script>
</body>
</html>
<?php
if ($_SERVER["REQUEST_METHOD"]=="post") {
echo "<script>alert('ALL DONE')</script>";
}
?>