This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
continue | |
dir=/var/www/downloads | |
file-allocation=falloc | |
max-connection-per-server=4 | |
max-concurrent-downloads=2 | |
max-overall-download-limit=0 | |
min-split-size=25M | |
rpc-allow-origin-all=true | |
rpc-secret=YouShouldChangeThis | |
input-file=/var/tmp/aria2c.session |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- THE DOCTYPE tells the browser what type of webpage to render, the doctype used in this website is HTML5 which is the most recent HTML. --> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>My Pimpin Website</title> | |
<!-- THE TITLE element is the name of the page, it is also visible in the browser tab. Its always good practice to give each page an appropriate title. --> | |
<meta name="description" content="A sample website, nothin fancy"> | |
<meta http-equiv="author" content="Francisco Campos Arias"> | |
<meta name="keywords" content="html, css, web, design, sample, practice"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Applies to the entire body of the HTML document (except where overridden by more specific | |
selectors). */ | |
body { | |
margin: 25px; | |
background-color: rgb(240,240,240); | |
font-family: arial, sans-serif; | |
font-size: 14px; | |
} | |
/* Applies to all <h1>...</h1> elements. */ |
NewerOlder