All Projects → victorqribeiro → Oldterminal

victorqribeiro / Oldterminal

Licence: mit
an old terminal template for html pages

Projects that are alternatives of or similar to Oldterminal

Codrops Scribbler
A responsive HTML template for coding projects with a clean, user friendly design. Crafted with the latest web technologies, the template is suitable for landing pages and documentations.
Stars: ✭ 302 (+115.71%)
Mutual labels:  terminal-theme, template
Nord Xfce Terminal
An arctic, north-bluish clean and elegant Xfce Terminal color theme.
Stars: ✭ 136 (-2.86%)
Mutual labels:  terminal-theme
React Native Starter
🚀A powerful react native starter template that bootstraps development of your mobile application
Stars: ✭ 1,798 (+1184.29%)
Mutual labels:  template
Dialogflow Web
Web App for Dialogflow
Stars: ✭ 135 (-3.57%)
Mutual labels:  template
Readme Model
💾 A beautiful readme model for you to put in your projects.
Stars: ✭ 131 (-6.43%)
Mutual labels:  template
Vertx Maven Starter
Maven project template for Vert.x
Stars: ✭ 135 (-3.57%)
Mutual labels:  template
Reactnativetemplate
Our example of simple application using ReactNative and some recommendations
Stars: ✭ 127 (-9.29%)
Mutual labels:  template
Westwind.razorhosting
Hosting the Razor Runtime outside of ASP.NET/MVC for use in non-Web .NET applications.
Stars: ✭ 136 (-2.86%)
Mutual labels:  template
Latex Cheatsheet
Template for a compact LaTeX Cheatsheet I made some years ago.
Stars: ✭ 136 (-2.86%)
Mutual labels:  template
Net Core Docx Html To Pdf Converter
.NET Core library to create custom reports based on Word docx or HTML documents and convert to PDF
Stars: ✭ 133 (-5%)
Mutual labels:  template
Pagefliplayout
A template with a magazine-like layout and a flat page flip animation
Stars: ✭ 133 (-5%)
Mutual labels:  template
Worker Typescript Template
ʕ •́؈•̀) TypeScript template for Cloudflare Workers
Stars: ✭ 129 (-7.86%)
Mutual labels:  template
Beginners C Program Examples
Simple, Short and Sweet beginners friendly C language programs
Stars: ✭ 138 (-1.43%)
Mutual labels:  template
Api Template
💧 A starting point for Vapor APIs.
Stars: ✭ 130 (-7.14%)
Mutual labels:  template
Github Template Guidelines
Guidelines for building GitHub templates.
Stars: ✭ 137 (-2.14%)
Mutual labels:  template
React Next Boilerplate
🚀 A basis for reducing the configuration of your projects with nextJS, best development practices and popular libraries in the developer community.
Stars: ✭ 129 (-7.86%)
Mutual labels:  template
Ngrx Generator
ngrx templates generator
Stars: ✭ 132 (-5.71%)
Mutual labels:  template
Gatsby Starter Foundation
A starter to launch your blazing fast personal website and a blog, Built with Gatsby and Netlify CMS. Made with ❤ by Stackrole
Stars: ✭ 135 (-3.57%)
Mutual labels:  template
Automatic Gatsbyjs App Landing Page
Automatic GatsbyJS App Landing Page - Automatically generate iOS app landing page using GatsbyJS
Stars: ✭ 137 (-2.14%)
Mutual labels:  template
Workshop Template
The Carpentries Workshop Template
Stars: ✭ 137 (-2.14%)
Mutual labels:  template

Old Terminal

An old terminal HTML/JS/CSS template I've been working on. Live version

white_on_blue

green_on_black

orange_on_black

Documentation

Changing font to 'Px Plus VGA Square Px'.

<link rel="stylesheet" type="text/css" href="css/PxPlusVGASquarePx.css" />

Changing font to 'Press Start 2P'.

<link rel="stylesheet" type="text/css" href="css/PressStart2P.css" />

Chaging color style to green on black.

<link rel="stylesheet" type="text/css" href="css/green_on_black.css" />

Chaging color style to white on blue.

<link rel="stylesheet" type="text/css" href="css/white_on_blue.css" />

Chaging color style to orange on black.

<link rel="stylesheet" type="text/css" href="css/orange_on_black.css" />

Creating a menu bar.

<div id="menu_bar"></div>

Defining where the text will show.

<div id="main_content"></div>

Adding items to the menu bar.

<div id="menu_bar">
  
  <div id="file" class="menu">
    <!-- Title //-->
    <span class="menu_item">File</span> 
    <div id="file_content" class="content">
      <ul>
        <!-- Sub Menus //-->
        <li id="init"><span> Init </span></li> 
        <li id="file1"><span> File 1 </span></li>
        <li id="file2"><span> File 2 </span></li>
      </ul>
    </div>
  </div>
  
</div>

Adding content to the menu item .

<div id="init_page" class="page">
<p>Hello World!</p>
<p>Good to see you.</p>
</div>

<div id="file1_page" class="page">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Integer nec odio. Praesent libero.</p>
</div>

<div id="file2_page" class="page">
<p>Praesent mauris. Fusce nec tellus sed augue semper porta.</p>
<p>Mauris massa. Vestibulum lacinia arcu eget nulla.</p>
</div>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].