Skip to content

Latest commit

 

History

History
88 lines (55 loc) · 1.92 KB

File metadata and controls

88 lines (55 loc) · 1.92 KB

Hello World

A presentation by Fania.


Images absolute

alt


Code

<!-- .element: class="stretch" -->
<!-- .slide: class="crammed" -->

Code2


function add( x, y ) {
    return x + y;
}

let val = add(3, 4);
console.log(val);

Code3


import React, { useState } from 'react';
 
function Example() {
  const [count, setCount] = useState(0);
 
  return (
    

You clicked {count} times

setCount(count + 1)}> Click me
); }
<iframe height="500" style="width: 100%;" scrolling="no" title="Very simple SVG Line Animation" src="https://codepen.io/faniae/embed/RwbBdye?height=265&theme-id=0&default-tab=html,result" frameborder="no" allowtransparency="true" allowfullscreen="true"> See the Pen Very simple SVG Line Animation by Fania Ra (@faniae) on CodePen. </iframe>

Live Code Editor

Open


Background Image

contain

Background Image2

cover (default)

Background Gradient

Background Iframe


Goodbye

<3