ifc5/viewer/web/index.html
2025-11-21 20:35:49 +01:00

97 lines
3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn IFC 5 with Us!</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
}
header {
background-color: #0056b3;
color: #fff;
padding: 1.5rem 1rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin: 0.5rem 0;
font-size: 1.2rem;
}
main {
padding: 2rem 1rem;
max-width: 800px;
margin: auto;
}
main h2 {
color: #0056b3;
font-size: 2rem;
margin-bottom: 1rem;
}
.cta-button {
display: inline-block;
padding: 0.8rem 1.5rem;
font-size: 1.2rem;
color: #fff;
background-color: #0056b3;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #003d80;
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: #fff;
font-size: 0.9rem;
}
footer a {
color: #00aaff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Master IFC 5</h1>
<p>Your gateway to understanding everything about the next generation of IFC</p>
</header>
<main>
<h2>Take a Course</h2>
<p>
IFC 5 is the latest evolution in openBIM standards, enabling seamless collaboration,
improved data exchange, and more efficient workflows.
Whether you're a seasoned professional or just starting in the field, this course will equip you with the knowledge
about the current status of IFC 5 and it's relation to other standards.
</p>
<p>
The 'alpha' version has just been released. Feel free to have a look at <a href="https://github.com/buildingSMART/IFC5-development">https://github.com/buildingSMART/IFC5-development</a>.
</p>
<a href="https://learn.ifcx.dev/products/courses/master-ifc-5-course" class="cta-button">Join the course</a>
<p>
Start the course using the link and follow the videos.
</p>
</main>
<footer>
<p>&copy; 2025 BuildingSMART International. All rights reserved.</p>
<p>Questions? <a href="mailto:technical@buildingsmart.org">Contact Us</a></p>
</footer>
</body>
</html>