-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
55 lines (49 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="QmlWeb : A QML engine in a web browser.">
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="deps/codemirror/lib/codemirror.css">
<script defer src="deps/codemirror/lib/codemirror.js"></script>
<script defer src="deps/codemirror/mode/javascript/javascript.js"></script>
<script defer src="main.js"></script>
<title>QmlWeb</title>
</head>
<body>
<header id="header">
<a id="github" href="https://github.com/qmlweb">View on GitHub</a>
<h1 id="title">QmlWeb</h1>
<h2 id="tagline">A QML engine in a web browser.</h2>
<div id="buttons">
<p><a href="https://gitter.im/qmlweb/qmlweb"><img src="https://badges.gitter.im/qmlweb/qmlweb.svg" alt="Join the chat at https://gitter.im/qmlweb/qmlweb"></a>
<a href="https://travis-ci.org/qmlweb/qmlweb"><img src="https://travis-ci.org/qmlweb/qmlweb.svg?branch=master" alt="Build Status"></a>
<a href="https://codecov.io/gh/qmlweb/qmlweb"><img src="https://codecov.io/gh/qmlweb/qmlweb/branch/master/graph/badge.svg" alt="codecov"></a></p>
<p><a href="https://www.npmjs.com/package/qmlweb"><img src="https://img.shields.io/npm/v/qmlweb.svg" alt="npm"></a>
<a href="http://bower.io/search/?q=qmlweb"><img src="https://img.shields.io/bower/v/qmlweb.svg" alt="Bower"></a>
<a href="https://github.com/qmlweb/qmlweb/releases"><img src="https://img.shields.io/github/tag/qmlweb/qmlweb.svg" alt="GitHub tag"></a></p>
</div>
</header>
<div id="code">
<textarea>
import QtQuick 2.0
Rectangle {
width: 500; height: 200
color: "lightgray"
Text {
id: helloText
text: "Hello world!"
anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter
font.pointSize: 24; font.bold: true
}
}
</textarea>
</div>
<div id="result">
<iframe src="runner/runner.html"></iframe>
</div>
<footer id="footer">
</footer>
</body>
</html>