Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<form>
<input type="button" value="A" id="button_a">
<input type="button" value="B" id="button_b">
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<p>
実数:<input type="text" id="input">
</p>
@CHARSET "UTF-8";
#map{
width: 300px;
height: 300px;
}
{
"name": "My Clock",
"description": "論プロ#10 の課題",
"launch_path": "/index.html",
"icons": {
"128": "/icon.png"
},
"developer": {
"name": "N. Shimizu",
"url": "http://chikoski.info"
@chikoski
chikoski / app.css
Last active December 18, 2015 07:39
@CHARSET "UTF-8";
@chikoski
chikoski / app.css
Last active December 18, 2015 08:19
論プロ第10回の CSS 修正版
@CHARSET "UTF-8";
body{
background-color: #111;
background-repeat: no-repeat;
background-image: url(../img/morning.jpg);
}
#clock{
font-family: 'VT323', monospace;
@chikoski
chikoski / index.html
Last active December 18, 2015 08:19
論プロ第10回で作成するアプリのHTML修正版
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Clock</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.min.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
</head>
@CHARSET "UTF-8";
body{
background-color: #111;
background-repeat: no-repeat;
}
#clock{
font-family: 'VT323', monospace, cursive;
color: #ff8c00;
@chikoski
chikoski / app.css
Created June 19, 2013 10:32
時計アプリ
@CHARSET "UTF-8";
body{
background-color: #111;
background-repeat: no-repeat;
}
#clock{
font-family: 'VT323', monospace, cursive;
color: #ff8c00;
extern mod std;
use std::os;
pub mod kankore{
extern mod std;
use std::io;
use std::path;
use std::result;
use std::str;