-
Notifications
You must be signed in to change notification settings - Fork 36
/
about.html
96 lines (93 loc) · 5.22 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
<!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>About</title>
<link rel="stylesheet" href="src/styles/index.css" />
<link rel="shortcut icon" href="./Favicon.jpg" type="image/x-icon">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.14.0/css/all.css"
integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="src/styles/about.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<nav class="navbar">
<div class="navbar__container">
<a href="#home" id="navbar__logo">DATAVIS</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span> <span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/index.html" class="navbar__links" id="home-page">Home</a>
</li>
<li>
<a href="/about.html" class="navbar__links" id="about">About</a>
</li>
<li class="navbar__btn">
<a href="/signup.html" class="button" id="signup">Sign Up</a>
</li>
<li class="navbar__btn">
<button class="button" id="toggle-darkmode">
<svg class="darkmode__toggle__icon" id="sun" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
</svg>
<svg class="darkmode__toggle__icon" id="moon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M21.752 15.002A9.718 9.718 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
</svg>
</button>
</li>
</ul>
</div>
</nav>
<div class="heading">
<br><h3>Welcome to DATAVIS!</h3><br>
</div>
<div id="text">
This Webpage is used to show us about Bussiness Intelligence using tools AWS Glue, AWS RedShift and MetaBase.
<br>
Our Home page shows the dashboard of E-commerce website where data tells abojut the product, Shipping and sales.
<br>
Our Aim was to create a service that can be used by Small-scale business to improve the profits by knowing the insight in their bussiness.
<br>
We have used mostly free and open source software to make our service as affordable as possible.
</div>
<div class="footer__container">
<div class="footer__links">
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h3>Made with 💗 by</h3>
<div class="glow-on-hover dev-button" id="dev-button-1"> Bhuvan Y E
<div class="icons-container">
<a class= "social-link dev-1"href="https://www.linkedin.com/in/bhuvan-y-e-9591ba191/"><i class=" fab fa-linkedin social-icon"></i> </a>
<a class= "social-link dev-1"href="https://github.com/bhuvan-tech"><i class=" fab fa-github social-icon"></i></a>
</div>
</div>
<div class="glow-on-hover dev-button" id="dev-button-1"> Angaj A
<div class="icons-container">
<a class= "social-link dev-1"href="https://www.linkedin.com/in/angaj-a-82208b153/"><i class=" fab fa-linkedin social-icon"></i> </a>
<a class= "social-link dev-1"href="https://github.com/ANGAJ2001"><i class=" fab fa-github social-icon"></i></a>
</div>
</div>
<div class="glow-on-hover dev-button" id="dev-button-1"> Bhanu Prakash
<div class="icons-container">
<a class= "social-link dev-1"href="https://www.linkedin.com/in/bhanu-prakash-361b05193/"><i class=" fab fa-linkedin social-icon"></i> </a>
<a class= "social-link dev-1"href="https://github.com/BhanuPrakash056"><i class=" fab fa-github social-icon"></i></a>
</div>
</div>
<div class="glow-on-hover dev-button" id="dev-button-1"> Anudeep
<div class="icons-container">
<a class= "social-link dev-1"href="https://www.linkedin.com/in/anudeep-s-654356192/"><i class=" fab fa-linkedin social-icon"></i> </a>
<a class= "social-link dev-1"href="https://github.com/Anudeep-313"><i class=" fab fa-github social-icon"></i></a>
</div>
</div>
</div>
</body>
</html>