-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbout.html
139 lines (103 loc) · 5.04 KB
/
About.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="About.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
</head>
<body style="min-height:100%;">
<header>
<h2>OUR STORY</h2>
</header>
<ul>
<li><a href="index.html" class="mI">Home</a></li>
<li><a href="About.html" class="mI active1">Our Story</a></li>
<li><a href="Projects.html" class="mI">Our Creations</a></li>
<li><a href="Team.html" class="mI">Our Fam</a></li>
<li><a href="Contact.html" class="mI">Contact</a></li>
</ul>
<div class="banner">
<div class="banner-text">
<div class="banner-text-items">
<h2>Our Story</h2>
<p>We code() We create{} We control<></p>
</div>
</div>
</div>
<div class="container" style="background:#313131;" id="bigDabba">
<div class="card" id="card1">
<div class="face face1">
<div class="content">
<h2 style="font-size:2.5em">Hello World!!</h2>
<p style="font-size:1.2em">We are a group of engineers who met in college.We all have the passion to learn and create new things.
We named our group CodeVengers because we had same goal of bringing a change in future by using technology.Technology is what brings us together.
</p>
</div>
</div>
<div class="face face2" onclick="showDabba1();">
<h2>Our Story</h2>
<div class="new">
<div class="morestory">
More...
</div>
</div>
</div>
</div>
<div class="card" id="card2">
<div class="face face1">
<div class="content">
<h2 style="font-size:2em">In quality we believe.</h2>
<p style="font-size:1.3em">From idea to execution, our winning combination of innovative thinking, smart style, subtle development, and constructive analysis guarantee we’re delivering the best to assist you grow. </p>
</div>
</div>
<div class="face face2" onclick="showDabba2();">
<h2>Our Services</h2>
<div class="new">
<div class="moreservices" >
More...
</div>
</div>
</div>
</div>
<div class="card" id="card3">
<div class="face face1">
<div class="content">
<h2 style="font-size:2em">SKY Is The Limit!!</h2>
<p style="font-size:1.2em">Our future goals are to participate in various Hackathons, improvise and add-on more to our skills.We are working constantly on the future projects.</p>
</div>
</div>
<div class="face face2" onclick="showDabba3();">
<h2>Our Goals</h2>
<div class="new">
<div class="moregoals">
More...
</div>
</div>
</div>
</div>
</div>
<div class="dabba" id="dab1">
<div class="closee" id="cross1" onclick="hideDabba1();">
</div>
<p id="para1">We are a group of engineers who met in college.We all have the passion to learn and create new things. We named our group CodeVengers because we had same goal of bringing a change in future by using technology.Technology is what brings us together. We decided to team up because it teaches us many soft skills like teamwork, delegation of tasks and meeting deadlines. Working in a team has taught us to seek each other's advice, respect each other's opinions and take a collective decision keeping in mind what would be best for our project.</p>
</div>
<div class="dabba" id="dab2">
<div class="closee" id="cross2" onclick="hideDabba2();">
</div>
<p id="para2">In quality we believe.
From idea to execution, our winning combination of innovative thinking, smart style, subtle development, and constructive analysis guarantee we’re delivering the best to assist you grow. Though we are currently con centrating on web development we look forward to work on app development and arduino based projects related to hardware. We are going to start developing ML based projects very soon.</p>
</div>
<div class="dabba" id="dab3">
<div class="closee" id="cross3" onclick="hideDabba3();">
</div>
<p id="para3">SKY Is The Limit!!
Our future goals are to participate in various Hackathons, improvise and add-on more to our skills.We are working constantly on the future projects.
Our motto is to keep learning and exploring and grab every opportunity that comes our way with open arms. We are looking forward to know more about various technologies and blog our views about them. We would like to work on diverse projects and take up anything that interests us and pushes our limits in order to gain perspective</p>
</div>
<div id="footer">
<h5>CodeVengers ©2020</h5>
</div>
<script type="text/javascript" src="About.js">
</script>
</body>
</html>