-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
92 lines (88 loc) · 4.28 KB
/
about.php
File metadata and controls
92 lines (88 loc) · 4.28 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
<!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">
<link rel="icon" type="image/x-icon" href="images/favicon.ico" />
<link href="styles/general.css" rel="stylesheet">
<link href="styles/about.css" rel="stylesheet">
<script src="scripts/responsive.js" defer></script>
<script src="scripts/darktheme.js" defer></script>
<script src="scripts/keepingdarktheme.js" defer></script>
<title>InfoMed | About Us</title>
</head>
<body>
<header class="site_header">
<nav class="navig_line">
<div class="left_container">
<div class="site_name">
<a class="site_name" href="/index.php">InfoMed</a>
</div>
<form action="/search.php" method="post">
<div class="search_bar">
<input type="search" id="search" name="keyword" placeholder=" Search...">
</div>
</form>
</div>
<ul class="right_container">
<li class="home">
<a class="menu_option" href="index.php"> Home </a>
</li>
<li class="categories">
<a class="menu_option" href="index.php#Categories">Categories</a>
</li>
<li class="statistics">
<a class="menu_option" href="statistics.php">Statistics</a>
</li>
<li class="about">
<a class="menu_option" href="about.php">About us</a>
</li>
</ul>
<div class="change_theme" id="change_theme">
<img src="images/sun.svg" class="sun">
<img src="images/moon.svg" class="moon">
</div>
<a href="https://www.info.uaic.ro" class="faculty" target="_blank"> <img src="images/logo-fii.png" alt="University logo" class="faculty_logo">
</a>
<!-- responsive website -->
<div class="phone-buttons">
<img src="images/search.png" class="search-btn">
<img src="images/menu.png" class="menu-btn">
</div>
</nav>
<div class="phone options">
<ul class="phone container">
<li class="phone_list_element">
<a class="phone menu_option" href="index.php">Home</a>
</li>
<li class="phone_list_element">
<a class="phone menu_option" href="index.php#Categories">Categories</a>
</li>
<li class="phone_list_element">
<a class="phone menu_option" href="statistics.php">Statistics</a>
</li>
<li class="phone_list_element">
<a class="phone menu_option" href="about.php">About us</a>
</li>
<li class="phone_list_element change_theme">
<div class="phone change_theme" id="phone_change_theme">
<img src="images/sun.svg" class="phone_sun">
<img src="images/moon.svg" class="phone_moon">
</div>
</li>
</ul>
</div>
</header>
<main class="about">
<p class="about_content first">This website was created within the "Software Engineering" course from the "Faculty of Informatics" Iasi, made by group 2E4.</p>
<p class="about_content second">The project "InfoMed" contains information about colorectal cancer from social media platform such as Twitter, Reddit and Youtube, that was analyzed for sentiment identification and used for different statistics.</p>
</main>
<footer class="footer">
<div class="footer_option first_option"><a class="menu_option" href="index.php#Categories">Categories</a></div>
<div class="footer_option"><a class="menu_option" href="statistics.php">Statistics</a></div>
<div class="footer_option"><a class="menu_option" href="about.php">About us</a></div>
<div class="footer_option">© Copyright 2022 InfoMed</div>
</footer>
</body>
</html>