In [1]:
%%html
<html>
<head>
<link rel="stylesheet" type="text/css" href="my_style.css">
</head>
<body>

<h1>This is a hsjshfdjeshfjfsdfeading</h1>
<p>This is a jjjhjhj.</p>


<script type="text/javascript" src="script.js"></script>
</body>
</body>
</html>


This is a hsjshfdjeshfjfsdfeading

This is a jjjhjhj.


In [ ]:


In [2]:
%%html
<!DOCTYPE html>
<html lang="de">
<head>
<link rel="stylesheet" type="text/css" href="my_style.css">
  <meta charset="utf-8">
  <title>externes JavaScript und css in HTML einbinden</title>

</head>
<body>
  <h1>externes JavaScript in HTML einbinden</h1>
 <p> test test</p>
  <main>
    <input type="number" id="Eingabe" value="0" size="3">
    <button type="button" id="los">Quadrat errechnen</button>
  </main>
  <script src="quadrat.js"></script>
</body>
</html>


externes JavaScript und css in HTML einbinden

externes JavaScript in HTML einbinden

test test


In [4]:
%%html
<iframe width="1000" height="700" frameborder="0" src="http://pythontutor.com/iframe-embed.html#code=%23%20Example%20to%20torture%20students%0A%23%20from%20UC%20Berkeley%20CS61a%0A%23%20%28only%20works%20in%20Python%203%29%0A%0Adef%20f%28t%29%3A%0A%20%20%20%20def%20g%28t%29%3A%0A%20%20%20%20%20%20%20%20def%20h%28%29%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20nonlocal%20t%0A%20%20%20%20%20%20%20%20%20%20%20%20t%20%2B%3D%201%0A%20%20%20%20%20%20%20%20return%20h,%20lambda%3A%20t%0A%20%20%20%20h,%20gt%20%3D%20g%280%29%0A%20%20%20%20return%20h,%20gt,%20lambda%3A%20t%0A%0Ah,%20gt,%20ft%20%3D%20f%280%29%0Aft%28%29,%20gt%28%29%0Ah%28%29%0Aft%28%29,%20gt%28%29&codeDivHeight=400&codeDivWidth=350&cumulative=false&curInstr=0&heapPrimitives=false&origin=opt-frontend.js&py=3&rawInputLstJSON=%5B%5D&textReferences=false"> </iframe>