-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (94 loc) · 4.65 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Search Art</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0, maximum-scale=1.0">
<meta name="keywords" content="picture,art,keywords,search">
<meta name="description" content=" A WebApp that ,given a keyword, searches for images related to it using a neural network.">
<meta name="google" content="notranslate">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="apple-touch-icon" sizes="126x126" href="logo/126X126.png">
<link rel="shortcut icon" href="logo/16X16.png">
<link rel="icon" type="image/png" sizes="32x32" href="logo/32X32.png">
<link rel="icon" type="image/png" sizes="16x16" href="logo/16X16.png">
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/toggle-menu.js"></script>
</head>
<body>
<div class="container-menu-hidden">
<div class="container-menu-list">
<ul id="header-menu">
<li><a href="index.html" title="Home Page"><span>HOME</span></a></li>
<li><a href="html/about.html" title="Contact Page"><span>ABOUT US</span></a></li>
</ul>
</div>
</div>
<div class="content-wrapper">
<header class="header">
<div class="header-sx">
<a href="#" title="Link Home">
<img id="img-logo" src="logo/Search%20Art%20Logo.png" alt="Company Logo">
</a>
</div>
<div class="header-right">
<a href="#" class="toggle-mnu">
<span class="toggle-menu-hamburgher"></span>
<span class="toggle-menu-text">MENU</span>
</a>
</div>
</header>
<div class="main-content">
<section id="main-content-section">
<div class="main-content-section-text">
<p>
<b>SearchArt</b> is a Web Application developed by two students at <a class="underlined-text" href="https://www.unifi.it/" target="_blank">Florence University</a> as an assignment for the PPM course.<br>
</p>
<p class="other-description">
The purpose of SearchArt is to promote the diffusion of art knowledge by technologies like artificial intelligence, web technologies and many others.
</p>
</div>
<div class="large-button">
<a href="html/choose.html" title="TagCloud">
<span>
TRY IT NOW
</span>
</a>
</div>
</section>
</div>
<footer class="footer">
<div class="footer-row">
<div class="footer-row-1">
<h3>Contacts:</h3>
<ul>
<li>Rieti,RI,Italy</li>
<li>
<a href= "mailto:francesco.baiocchi@stud.unifi.it">
francesco.baiocchi@stud.unifi.it
</a>
<li>
<a href= "mailto:leonardo.petrilli@stud.unifi.it">
leonardo.petrilli@stud.unifi.it
</a>
</li>
</ul>
</div>
<div class="footer-row-2">
<h3>Social:</h3>
<p>For more info or specific questions:</p>
<div class="social-buttons">
<a href="#" title="Facebook icon">
<img src="images/facebook.svg" alt="Facebook icon">
</a>
<a href="#" title="Facebook icon">
<img src="images/instagram.svg" alt="Instagram icon">
</a>
</div>
</div>
</div>
</footer>
</div>
</body>
</html>