-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
108 lines (108 loc) · 3.35 KB
/
contact.html
File metadata and controls
108 lines (108 loc) · 3.35 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
<!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>
<ul id="navbar">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<div class="artbar">
<li><a href="Category.html">CATEGORY<i class="fas fa-caret-down"></i></a>
<div class="sub-menu">
<ul>
<li><a href="#">Cloud Fundamentals</a></li>
<li><a href="#">Docker</a></li>
<li><a href="#">Jenkins</a></li>
<li><a href="#">Kubernetes</a></li>
</ul>
</div>
</li>
</div>
<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="page-header" class="contact-header">
<h2>#Lets Talk!</h2>
</section>
<section id="contact-details" class="section-p1">
<div class="details">
<span>GET IN TOUCH</span>
</div>
</section>
<section id="form-details">
<form action="">
<span> LEAVE A MESSAGE</span>
<h2> We love to hear from you</h2>
<input type="text" placeholder="Your Name">
<input type="text" placeholder="E-mail">
<input type="text" placeholder="Subject">
<textarea name="" id="" cols="30" rows="10" placeholder="Your Message"></textarea>
<button class="normal">Submit</button>
</form>
<div class="people">
<div>
<img src="images/People/pics3.jpg" alt="">
<p><span> Sowmya</span> DevOps Consultant <br> Phone: +91-7892765691<br>Email: swaritha10@gmail.com</p>
</div>
</div>
</section>
<section id="newsletter" class="section-p1 section-m1">
<div class="newstext">
<h4>Sign Up For Newsletters</h4>
<p> Get E-mail updates about <span>WorkShops</span></p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button class="normal">Sign Up</button>
</div>
</section>
<section>
<footer class="section-p1">
<!-- <div class="col">-->
<!-- <img class="logo" src="img/logo1.png" alt="" width="80px">-->
<!-- <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>-->
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<i class="fab fa-linkedin"></i>
<i class="fab fa-youtube"></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>
<script src="script.js"></script>
</body>
</html>