install.html
HTML document, ASCII text
1<!DOCTYPE html> 2<html lang="en-US"> 3 4<head> 5<title>How to Install</title> 6<link rel="stylesheet" href="style.css" /> 7<meta charset="UTF-8"> 8<meta name="viewport" content="width=device-width, initial-scale=1.0"> 9<meta http-equiv="X-UA-Compatible" content="ie=edge"> 10</head> 11 12<body> 13<a href="index.html">go back</a> 14<h1>Installing a Theme</h1> 15<ol> 16<li>Clone your .config repository.</li> 17<li>Create a <code>theme.css</code>.</li> 18<li>Use <code>git add .</code> and then <code>git commit -m "Add theme.css"</code> and ending with <code>git push</code></li> 19<li>If prompted, log into your Roundabout account.</li> 20</ol> 21</body> 22 23</html> 24