-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
52 lines (48 loc) · 2.1 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
{% load static %}
<!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 Us</title>
<link rel="stylesheet" href="{% static '/css/style.css' %}" />
<script src="https://kit.fontawesome.com/26719dd53c.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</head>
<body>
<div class="container">
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo">
<a href="{% url 'Home Page' %}">Car Showroom Management System</a>
</div>
<ul class="menu">
<li><a id="abt" href="{% url 'Home Page' %}" class="menu-btn">Home</a></li>
<li><a id="first" href="{% url 'About' %}" class="menu-btn active">About Us</a></li>
<li><a href="{% url 'Contact' %}" class="menu-btn">Contact Us</a></li>
<li><a href="{% url 'Login' %}" class="menu-btn">Login</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<section class="main">
<div class="max-width">
<lottie-player src="https://assets2.lottiefiles.com/packages/lf20_asjtnqce.json" background="transparent" speed="1" style="height: 400px;" loop autoplay></lottie-player>
</div>
</section>
<footer>
<span>Design By <a href="https://www.linkedin.com/in/swastik-raj-singh-80ba881b8/">Swastik - Subhassini</a>
| <span class="far fa-copyright"></span> 2022 All rights
reserved.</span>
</footer>
</div>
<script src="{% static '/js/script.js' %}"></script>
</body>
</html>