-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
474 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>About Tfs</title> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f5f5f5; | ||
color: #333; | ||
line-height: 1.6; | ||
} | ||
|
||
.container { | ||
max-width: 900px; | ||
margin: 20px auto; | ||
padding: 20px; | ||
background: white; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
border-radius: 8px; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5em; | ||
margin-bottom: 20px; | ||
color: #333; | ||
} | ||
|
||
h2 { | ||
font-size: 1.8em; | ||
margin-bottom: 15px; | ||
color: #555; | ||
} | ||
|
||
p { | ||
margin-bottom: 15px; | ||
font-size: 1.1em; | ||
} | ||
|
||
ul { | ||
list-style: none; | ||
margin: 10px 0; | ||
padding: 0; | ||
} | ||
|
||
ul li { | ||
background: #f0f0f0; | ||
margin: 8px 0; | ||
padding: 10px 15px; | ||
border-radius: 4px; | ||
} | ||
|
||
.highlight { | ||
color: #0078d7; | ||
font-weight: bold; | ||
} | ||
|
||
.download-button { | ||
display: inline-block; | ||
margin-top: 20px; | ||
padding: 12px 20px; | ||
background: #0078d7; | ||
color: white; | ||
text-decoration: none; | ||
font-size: 1em; | ||
border-radius: 4px; | ||
transition: background 0.3s; | ||
} | ||
|
||
.download-button:hover { | ||
background: #005bb5; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>About Tfs</h1> | ||
<p><strong>Tfs</strong> specializes in creating innovative software solutions that include:</p> | ||
<ul> | ||
<li>Developing dynamic <span class="highlight">websites</span> and cutting-edge <span class="highlight">apps</span>.</li> | ||
<li>Providing a custom <span class="highlight">web search engine</span> for efficient information retrieval.</li> | ||
<li>Building and maintaining <span class="highlight">Tfs OS</span>, a browser-based web operating system with advanced features.</li> | ||
</ul> | ||
|
||
<h2>Tfs OS</h2> | ||
<p>Tfs OS is a unique WebOS designed to run directly in your browser, offering a seamless and feature-rich experience. The latest version is <span class="highlight">Tfs OS 12</span>, which includes:</p> | ||
<ul> | ||
<li>Improved user interface and experience.</li> | ||
<li>Enhanced multitasking capabilities.</li> | ||
<li>Advanced productivity tools.</li> | ||
<li>Customizable themes and settings.</li> | ||
</ul> | ||
<p>To experience Tfs OS, download the file and run it in your browser.</p> | ||
You Can go To the Official TfsOs Web at <p> | ||
<a href="tfsos.github.io/fsosweb/">tfsosWeb</a> | ||
</p> | ||
</div> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact Tfs</title> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f5f5f5; | ||
color: #333; | ||
line-height: 1.6; | ||
} | ||
|
||
.container { | ||
max-width: 900px; | ||
margin: 20px auto; | ||
padding: 20px; | ||
background: white; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
border-radius: 8px; | ||
} | ||
|
||
h1 { | ||
font-size: 2.5em; | ||
margin-bottom: 20px; | ||
color: #333; | ||
} | ||
|
||
h2 { | ||
font-size: 1.8em; | ||
margin-bottom: 15px; | ||
color: #555; | ||
} | ||
|
||
p { | ||
margin-bottom: 15px; | ||
font-size: 1.1em; | ||
} | ||
|
||
.email-link { | ||
color: #0078d7; | ||
text-decoration: none; | ||
font-weight: bold; | ||
font-size: 1.1em; | ||
} | ||
|
||
.email-link:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.contact-info { | ||
margin-top: 30px; | ||
font-size: 1.2em; | ||
color: #333; | ||
} | ||
|
||
.contact-info ul { | ||
list-style: none; | ||
margin-top: 10px; | ||
} | ||
|
||
.contact-info li { | ||
background: #f0f0f0; | ||
padding: 10px; | ||
margin: 8px 0; | ||
border-radius: 4px; | ||
} | ||
|
||
.form-container { | ||
margin-top: 30px; | ||
} | ||
|
||
.form-container input, | ||
.form-container textarea { | ||
width: 100%; | ||
padding: 10px; | ||
margin: 8px 0; | ||
border-radius: 4px; | ||
border: 1px solid #ddd; | ||
font-size: 1em; | ||
} | ||
|
||
.form-container textarea { | ||
height: 150px; | ||
resize: vertical; | ||
} | ||
|
||
.form-container button { | ||
padding: 12px 20px; | ||
background-color: #0078d7; | ||
color: white; | ||
border: none; | ||
border-radius: 4px; | ||
font-size: 1.1em; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.form-container button:hover { | ||
background-color: #005bb5; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Contact Tfs</h1> | ||
<p>If you have any inquiries or requests, feel free to reach out to us.</p> | ||
|
||
<h2>Email Us</h2> | ||
<p>For any questions or to request more information, you can contact us via email:</p> | ||
<p><a href="mailto:[email protected]" class="email-link">[email protected]</a></p> | ||
|
||
|
||
</div> | ||
</body> | ||
</html> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="icon" type="image/x-icon" href="tfs.ico"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Tfs</title> | ||
<style> | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
.topbar { | ||
background-color: #333; | ||
color: white; | ||
padding: 15px 20px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
.topbar .company-name { | ||
font-size: 20px; | ||
font-weight: bold; | ||
} | ||
|
||
.menu { | ||
display: flex; | ||
gap: 20px; | ||
} | ||
|
||
.menu-item { | ||
position: relative; | ||
color: white; | ||
text-decoration: none; | ||
font-size: 16px; | ||
cursor: pointer; | ||
} | ||
|
||
.menu-item:hover { | ||
color: #f0a500; | ||
} | ||
|
||
.dropdown { | ||
display: none; | ||
position: absolute; | ||
top: 40px; | ||
left: 0; | ||
background-color: white; | ||
border: 1px solid #ddd; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); | ||
min-width: 150px; | ||
z-index: 1000; | ||
} | ||
|
||
.dropdown a { | ||
color: #333; | ||
text-decoration: none; | ||
display: block; | ||
padding: 10px; | ||
font-size: 14px; | ||
} | ||
|
||
.dropdown a:hover { | ||
background-color: #f0f0f0; | ||
} | ||
|
||
.menu-item:hover .dropdown { | ||
display: block; | ||
} | ||
|
||
.content { | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="topbar"> | ||
<div class="company-name">Tfs</div> | ||
<div class="menu"> | ||
<div class="menu-item"> | ||
|
||
</div> | ||
<div class="menu-item"> | ||
About | ||
<div class="dropdown"> | ||
<a href="register.html">register</a> | ||
<a href="about.html">About</a> | ||
</div> | ||
</div> | ||
|
||
<div class="menu-item"> | ||
Contact | ||
<div class="dropdown"> | ||
<a href="contact.html">Contact</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="content"> | ||
<h1>Welcome to Tfs</h1> | ||
<p>Tfs Org. Is a software company trusted By Axr Org.We Build and Make Software, Websites, Apps etc and more. </p> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.