-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
107 lines (105 loc) · 3.98 KB
/
about.html
File metadata and controls
107 lines (105 loc) · 3.98 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
<!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>
<!-- <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="about-header">
<h2>#know us</h2>
<p>Get to know more about us!</p>
</section>
<section id="about-head" class="section-p1">
<img src="images/img2.jpg" alt="">
<div>
<h2> About me</h2>
<p>Hello! I am Sowmya, <br> I am Author and blogger for this page.I have wide experience working on Cloud and DevOps Solutions<br>
In this website you will find a Curated information required for you to kick start your Cloud Journey, I will keep this website updated with all the latest trending technologies!</p>
<br><br>
<marquee bgcolor="#ccc" loop="-1" scrollamount="5" width="100%"> To know more about latest technologies in demand stay tuned to this Page! </marquee>
</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">
<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>
<script>
const menuToggle = document.querySelector('.toggle');
const showcase = document.querySelector('.header');
menuToggle.addEventListener('click', () => {
menuToggle.classList.toggle('active');
header.classList.toggle('active');
})
</script>
</body>
</html>