-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
78 lines (78 loc) · 3.09 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
<!-- About Us Page -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="styles/about.css">
<link rel="stylesheet" href="styles/header.css">
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/general.css">
<link rel="icon" href="assets/Icon/icon.jpg">
<script src="script/header.js" defer></script>
</head>
<body>
<header class="header">
<a href="index.html" class="left-section">
<img id="logo" src="assets/Header/logo.png">
<span class="name">Project Portal</span>
</a>
<div class="right-section">
<nav class="navigation">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
</nav>
<a class="menu" id="menu-click" onclick="openSlideMenu()">
<img class="menu-icon" src="assets/Header/menu-icon.png">
</a>
<a class="menu" id="close-click" onclick="closeSlideMenu()">
<img class="close-icon" src="assets/Header/close-icon.png">
</a>
</div>
</header>
<div class="menu-list hide" id="menu-drop">
<a href="index.html">Home</a>
<a href="contact.html">Contact</a>
<a href="form.html">Submit Project</a>
<a href="list.html">Project List</a>
<a href="login.html">Admin Login</a>
<a href="about.html" id="active-menu">About Us</a>
</div>
<main class="main">
<div class="container">
<div class="title-container">
<div id="back-container" onclick="backButton()">
<img src="assets/Submit-Form/back-icon.png">
<span>Back</span>
</div>
<span id="page-title">About Us</span>
</div>
<div class="content-container">
<div class="gif-container">
<img id="cat-gif" src="assets/About-Us/cat-typing.gif">
</div>
<div class="content">
<p class="paragraph">
Welcome to our platform, a hub for innovation and collaboration
where students can submit their projects and explore the work of
their peers.
</p>
<p class="paragraph">
Developed as part of the CTA project for the Web Technology course at SDMCET,
by Joy Mascarenhas and Pratham Manabasannanavar.
</p>
<p class="paragraph">
Github:<br>
<a href="https://github.com/JoyM268">Joy Mascarenhas</a><br>
<a href="https://github.com/PrathamManabasannanavar">Pratham Manabasannanavar</a>
</p>
</div>
</div>
</div>
<br>
<br>
</main>
</body>
</html>