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<link rel="icon" href="Favicon.png" /> 11</head> 12 13<body> 14<nav aria-label="breadcrumbs"> 15<ol> 16<li><a href="index.html">index</a></li> 17<li><a href="install.html" aria-current="location">Installing a Theme</a></li> 18</ol> 19</nav> 20<h1>Installing a Theme</h1> 21<ol> 22<li>Clone your .config repository.</li> 23<li>Create a <code>theme.css</code>.</li> 24<li>Use <code>git add .</code> and then <code>git commit -m "Add theme.css"</code> and ending with <code>git push</code></li> 25<li>If prompted, log into your Roundabout account.</li> 26</ol> 27</body> 28 29</html> 30