-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (129 loc) · 4.27 KB
/
index.html
File metadata and controls
133 lines (129 loc) · 4.27 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
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
<!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>TechKnow</title>
<link rel="stylesheet" href="customstyle.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
</head>
<body>
<section id="header">
<h2 class="logo">TechKnow</h2>
<div class="toggle"></div>
<div>
<ul id="navbar">
<li><a href="index.html"><i class="fa fa-home"></i> HOME</a></li>
<li class="active"><a href="about.html">ABOUT</a></li>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="Case Studies.html">CASE STUDIES</a></li>
<li><a href="Projects">PROJECTS</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</section>
<section id="home-header" class="homepage-header">
<video src="Video/video.mp4" muted loop autoplay></video>
<div class="text">
<h2>Learn with TechKnow</h2>
<p>Here you will find all information about latest trending technologies which is in demand.</p>
<a href="resources.html">Keep Learning</a>
</div>
</section>
<section>
<footer class="section-p1">
<div class="col">
<h4>Contact</h4>
<p><strong>Address: </strong>Richmond Circle,Bangalore 560001,India</p>
<p><strong>Phone: </strong> +91 1234567890</p>
<p><strong>Hours: </strong>10:00 - 18:00, Mon - Sat</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<i class="fab fa-linkedin"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-facebook-f"></i>
</div>
</div>
</div>
<div class="col">
<h4>About</h4>
<a href="#">About Us</a>
<a href="#">Privacy</a>
<a href="#">Terms & Conditions</a>
<a href="#">Contact Us</a>
</div>
<div class="col">
<h4>My Account</h4>
<a href="#">Sign In</a>
<a href="#">Help</a>
</div>
<div class="copyright">
<p>©2022, TechKnow</p>
</div>
</footer>
</section>
<!-- <footer>
<div class="footer-col">
<h3>Cloud Solutions</h3>
<li>AWS</li>
<li>AZURE</li>
<li>GCP</li>
</div>
<div class="footer-col">
<h3>About</h3>
<li>Experts</li>
<li>Privacy Policy</li>
<li>Terms of Service</li>
</div>
<div class="footer-col">
<h3>Resources</h3>
<li>Guides</li>
<li>Case Studies</li>
<li>Projects</li>
</div>
<div class="footer-col">
<h3>Newsletter</h3>
<p>Get updates on all upcoming workshops</p>
<div class="subscribe">
<input type="text" placeholder="Your Email Address">
<a href="#" class="yellow">SUBSCRIBE</a>
</div>
</div>
<div class="copyright">
<p>Copyright ©2022 TechTrend,All rights reserved</p>
<div class="pro-links">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</div>
</footer> -->
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script>
function sendEmail(){
Email.send({
SecureToken: "44fcd64f-ec47-40f0-abce-6a523b6b87c2",
To : 'sowperl30@gmail.com',
From : document.getElementById("email").value,
Subject : "New User Registration",
Body : "Name: " + document.getElementById("name").value
+ "<br> Email: " + document.getElementById("email").value
+ "<br> Phone no.: " + document.getElementById("Phone no.").value
}).then(
message => alert("Form Submitted Successfully")
);
}
</script>
<script>
$('#menu-btn').click(function(){
$('nav .navigation ul').addClass('active')
});
$('#menu-close').click(function(){
$('nav .navigation ul').removeClass('active')
});
</script>
</body>
</html>