Difference between revisions of "Testing"


(Created page with "<html> <head> <script type="text/javascript" src="dygraph.js"></script> <link rel="stylesheet" src="dygraph.css" /> </head> <body> <div id="graphdiv"></div> <script type="te...")
 
Line 1: Line 1:
<html>
+
<span class="tk.futura">A    B    C    D    E    F    G    H    I    J    K    L    M    N    O    P    R    S    T    U    V    Y    Z    a    b    c    d    e    f    g   h    i    j    k    l    m    n   o    p    r    s    t    u    v    y    z    Ç    ç    Ğ    ğ    İ    ı    Ö    ö    Ş    ş    Ü    ü</span>
<head>
 
<script type="text/javascript"
 
  src="dygraph.js"></script>
 
<link rel="stylesheet" src="dygraph.css" />
 
</head>
 
<body>
 
<div id="graphdiv"></div>
 
<script type="text/javascript">
 
  g = new Dygraph(
 
 
 
    // containing div
 
    document.getElementById("graphdiv"),
 
 
 
    // CSV or path to a CSV file.
 
    "Date,Temperature\n" +
 
    "2008-05-07,75\n" +
 
    "2008-05-08,70\n" +
 
    "2008-05-09,80\n"
 
 
 
  );
 
</script>
 
</body>
 
</html>
 

Revision as of 06:03, 16 February 2019

A B C D E F G H I J K L M N O P R S T U V Y Z a b c d e f g h i j k l m n o p r s t u v y z Ç ç Ğ ğ İ ı Ö ö Ş ş Ü ü