web-view 0.7.3

Rust bindings for webview, a tiny cross-platform library to render web-based GUIs for desktop applications
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">
  <title>blue</title>
  <link rel="stylesheet" href="css/styles.css">
</head>
<body id="blue-body">
  <button class="index" onclick="changePage('index')">index</button>
  <button class="red" onclick="changePage('red')">RED</button>
  <button class="green" onclick="changePage('green')">GREEN</button>
  <button class="blue" onclick="changePage('blue')">BLUE</button>

  <script src="js/scripts.js"></script>
</body>
</html>