This repository has been archived on 2019-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
MillionHopes/preferences.html

34 lines
897 B
HTML
Raw Normal View History

2017-07-03 15:55:37 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Photon</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="photon.css">
<!-- Electron Javascript -->
<script src="app.js" charset="utf-8"></script>
</head>
<body>
<!-- Wrap your entire app inside .window -->
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header">
<h1 class="title">Photon</h1>
</header>
<!-- Your app's content goes inside .window-content -->
<div class="window-content">
<div class="padded-more">
<h1>Welcome to Photon</h1>
<p>
Thanks for downloading Photon. This is an example HTML page that's linked up to compiled Photon CSS, has the proper meta tags
and the HTML structure.
</p>
</div>
</div>
</div>
</body>
</html>