diff options
| author | Dominic Matarese <dominicmatarese@gmail.com> | 2021-10-16 17:42:27 +0000 | 
|---|---|---|
| committer | Dominic Matarese <dominicmatarese@gmail.com> | 2021-10-16 17:42:27 +0000 | 
| commit | 896a5685adc9980a76873086034491d344cd17d1 (patch) | |
| tree | 1186644ebc35fdfed31e9301c151c43b01f17e29 | |
| parent | 63ccfb1d7b0f0665e1c3212af6420b9fc57a4640 (diff) | |
changed container width and worked on Crypto page
| -rw-r--r-- | crypto.html | 52 | ||||
| -rw-r--r-- | style.css | 2 | 
2 files changed, 53 insertions, 1 deletions
| diff --git a/crypto.html b/crypto.html new file mode 100644 index 0000000..01b24d2 --- /dev/null +++ b/crypto.html @@ -0,0 +1,52 @@ +<!doctype html> +<!-- +Copyright (C) 2021 Dominic Matarese + +    This program is free software: you can redistribute it and/or modify +    it under the terms of the GNU General Public License as published by +    the Free Software Foundation, either version 3 of the License, or +    (at your option) any later version. + +    This program is distributed in the hope that it will be useful, +    but WITHOUT ANY WARRANTY; without even the implied warranty of +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +    GNU General Public License for more details. + +    You should have received a copy of the GNU General Public License +    along with this program.  If not, see <https://www.gnu.org/licenses/>. +--> +<html> +<head> +	<meta charset="utf-8"/> +	<title>The Dom Dot Com</title> +	<link rel="stylesheet" type="text/css" href="style.css"/> +</head> +<div id="grid"></div> +<div id="container"> +<div id="content"> + +<div id="title"> +	<center>Donate Cryptocurrency</center> +	<br> +</div> +<center> +	<img src="bitcoin-logo-png-transparent.png" width=200px height=200px> +	<img src="monero-address" width=200px height=200px> + +	<br> +	<p style="background: black; color: #20FF86; font-size: 16px;">Bitcoin Address Goes HereGbASb </p> +	<br> +	<img src="monero-logo-png-transparent.png" width=200px height=200px> +	<img src="monero-address" width=200px height=200px> +	<br> +	<p style="background: black; color: #20FF86; font-size: 16px;">493zSjx8NhU83bM8RzDEC7FLtjSWfGn9gj5kCds68dhmHX1zL11Bf3KR3eh57SmduCL1TonWhxD2gUbtqkAnYQqsTQGbASb </p> +	<br> +</center> +<div id="footer"> +	This website is released under the <a href="https://www.gnu.org/licenses/gpl.txt">GNU GPL v3.0</a> by Dominic Matarese +</div> + +</div> +</div> + +</html> @@ -80,7 +80,7 @@ a.dead {  	border-radius: 25px;  	opacity: 0.7;  	position: relative; -	width: 50%; /*should this be 80vmin ? */ +	width: 75%; /*should this be 80vmin ? */  	box-sizing: border-box;  } | 
