Skip to content

Commit

Permalink
sntplamya
Browse files Browse the repository at this point in the history
  • Loading branch information
timurhai committed Jun 4, 2024
1 parent 4e83c62 commit bb94b0f
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sites/sntplamya.ru/general.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
function g_Init()
{
}
16 changes: 16 additions & 0 deletions sites/sntplamya.ru/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>СНТ "ПЛАМЯ"</title>
<link type="text/css" rel="stylesheet" href="styles.css">
<script type="text/javascript" src="general.js"></script>
</head>
<body onload="g_Init()">

<p style="font-size: 40px; margin: 50px;">
СНТ "ПЛАМЯ"
</p>

</body>
</html>
14 changes: 14 additions & 0 deletions sites/sntplamya.ru/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
body {
background-color: #223322;
color: #999999;
font-weight: bold;
font-size: 26px;
font-family: sans-serif;
text-shadow: 0 0 30px rgba(255,255,255,.3);
text-align: center;
}

a { color: #8888AA; }
a.visited { color: #88AAAA; }
a:hover { color: #AA8888; }

0 comments on commit bb94b0f

Please sign in to comment.