This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexamples.html
96 lines (81 loc) · 4.43 KB
/
examples.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">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/new_style.css">
<title>Chowlk | About</title>
</head>
<body>
<!--Navbar-->
<header>
<nav class="navbar navbar-expand-lg navbar-light py-3 text-dark">
<div class="container">
<a class="navbar-brand" href="#">
<img id="logo" src="images/logos/logo.png" alt="Chowlk logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto fw-bold mx-4">
<li class="nav-item">
<a class="nav-link" href="index.html">Converter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="notation.html">Notation</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Examples</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
</ul>
<a href="https://github.com/oeg-upm/Chowlk" target="_blank"><i class="bi bi-github h4 text-dark"></i></a>
</div>
</div>
</nav>
</header>
<!--About us-->
<section class="pt-3 px-5">
<div class="container">
<h3 class="pt-4 pb-2">SAREF for Building Ontology</h3>
<ul>
<li>XML file of the conceptualization: <a href="/examples/saref4building.xml" download="saref4building.xml">XML file</a></li>
<li>TTL file generated by Chowlk: <a href="/resources/saref4building.ttl" download="saref4building.ttl">TTL file</a></li>
<img class="py-3" width="100%" style="min-width: 800px;" src="/resources/saref4building.jpg" alt="">
</ul>
<h3 class="pt-4 pb-2">BIMERR Building Ontology</h3>
<ul>
<li>XML file of the conceptualization: <a href="/examples/building.xml" download="building.xml">XML file</a></li>
<li>TTL file generated by Chowlk: <a href="/resources/building.ttl" download="building.ttl">TTL file</a></li>
<img class="py-3" width="100%" style="min-width: 800px;" src="/resources/building.jpg" alt="">
</ul>
</div>
</section>
<!--Footer-->
<footer class="footer py-2">
<div class="container">
<hr>
<div class="row">
<div class="col">
<p>María Poveda-Villalón <br>
Contact email: [email protected] <br>
Latest revision: December, 2022 <br>
Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License 2.0</a></p>
</div>
<div class="col-3 ms-auto">
<a href="https://oeg.fi.upm.es/" target="_blank"><img class="footer-logo" src="images/logos/oeg-logo.gif" alt=""></a>
<a id="fi-logo" href="https://www.fi.upm.es/" target="_blank"><img class="footer-logo" src="images/logos/fi-logo.png" alt=""></a>
<a href="https://www.upm.es/" target="_blank"><img class="footer-logo" src="images/logos/upm-logo.png" alt=""></a>
</div>
</div>
</div>
</footer>
</body>
</html>