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