Skip to content

Commit 98a7f8d

Browse files
add new area of website
1 parent e503c5a commit 98a7f8d

File tree

5 files changed

+67
-0
lines changed

5 files changed

+67
-0
lines changed

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ <h1>DebianProgrammer's Website</h1>
1111
</div>
1212
<br><br><br><br>
1313
<div id="buttons">
14+
<a href="projects/index.html">My projects</a>
1415
<a href="https://github.com/DebianProgrammer">Github</a>
1516
</div>
1617
</body>

projects/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Projects</title>
5+
<link rel="stylesheet" href="../style.css">
6+
</head>
7+
<body>
8+
<div id="top">
9+
<h1>DebianProgrammer's Website / Projects</h1>
10+
<p>Welcome to my projects</p>
11+
</div>
12+
<br><br><br><br>
13+
<div id="buttons">
14+
<a href="netpyfile.html">netpyfile</a>
15+
<a href="pyfile.html">pyfile</a>
16+
<br><br><br><br><br>
17+
<a href="../index.html">Go back</a>
18+
</div>
19+
</body>
20+
</html>

projects/netpyfile.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="projectstyle.css">
5+
<title>netpyfile</title>
6+
<link rel="stylesheet" href="../style.css">
7+
</head>
8+
<body>
9+
<div id="top">
10+
<h1>DebianProgrammer's Website / Projects / netpyfile</h1>
11+
</div>
12+
<br><br><br><br>
13+
<p>netpyfile is a pure python tool that allows you to transfer files between 2 computers</p>
14+
<p>the server can be setup so that the client connects to it and download and list files in a directory on the server computer</p>
15+
<br><br>
16+
<div id="buttons">
17+
<a href="https://github.com/DebianProgrammer/netpyfile">netpyfile on github</a>
18+
<a href="index.html">Go back</a>
19+
</div>
20+
</body>
21+
</html>

projects/projectstyle.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
p {
2+
color: white;
3+
text-align: center;
4+
font-size: 26px;
5+
}

projects/pyfile.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<link rel="stylesheet" href="projectstyle.css">
5+
<title>pyfile</title>
6+
<link rel="stylesheet" href="../style.css">
7+
</head>
8+
<body>
9+
<div id="top">
10+
<h1>DebianProgrammer's website / Projects / pyfile</h1>
11+
</div>
12+
<br><br><br><br>
13+
<p>pyfile is a pure python tool to view and browse files</p>
14+
<br><br>
15+
<div id="buttons">
16+
<a href="https://github.com/DebianProgrammer/pyfile">pyfile on github</a>
17+
<a href="index.html">Go back</a>
18+
</div>
19+
</body>
20+
</html>

0 commit comments

Comments
 (0)