Skip to content

Instantly share code, notes, and snippets.

@jmichalenko
jmichalenko / index.html
Created May 29, 2019 11:26
Your first HTML page // source https://jsbin.com/fahodet
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your first HTML page</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>My home page</h1>
<p>Hi! Welcome to my Home Page! My name is Michel Buffa, I'm a professor at the University of Nice, in France, and I'm also the author of two MOOCS about HTML5 on W3Cx.</p>
@jmichalenko
jmichalenko / index.html
Created May 29, 2019 11:26
Your first HTML page // source https://jsbin.com/fahodet
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your first HTML page</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>My home page</h1>
<p>Hi! Welcome to my Home Page! My name is Michel Buffa, I'm a professor at the University of Nice, in France, and I'm also the author of two MOOCS about HTML5 on W3Cx.</p>
@jmichalenko
jmichalenko / index.html
Created May 29, 2019 11:26
Your first HTML page // source https://jsbin.com/fahodet
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your first HTML page</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>My home page</h1>
<p>Hi! Welcome to my Home Page! My name is Michel Buffa, I'm a professor at the University of Nice, in France, and I'm also the author of two MOOCS about HTML5 on W3Cx.</p>
@jmichalenko
jmichalenko / index.html
Created September 10, 2019 11:00
Internal CSS styling Example
<!DOCTYPE html>
<html>
<head>
<title>Playing with Inline Styles</title>
<style>
p {
color: blue;
font-size: 46px;
}
</style>
@jmichalenko
jmichalenko / index.html
Last active September 11, 2019 01:00
Internal CSS
<!DOCTYPE html>
<html lang="en">
<head>
<style>
#paragraphOne {
color: blue;
font-size: 46px;
}
</style>
<meta charset="UTF-8">
#include <stdio.h>
int main(void)
{
printf("This is CS50AP!\n");
}
@jmichalenko
jmichalenko / main.dart
Created October 22, 2022 19:57
malevolent-destiny-4227
class Person {
String name;
int age;
Person({this.name = 'max', this.age = 30});
}
double addNumbers(double num1, double num2) {
//print(num1 + num2);
return num1 + num2;
@jmichalenko
jmichalenko / main.dart
Created November 17, 2022 19:26
loth-ray-8288
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
@jmichalenko
jmichalenko / main.dart
Created November 22, 2022 17:41
loth-ray-8288
class Person {
String? name;
int? age;
Person({this.name, this.age});
}
void main() {
var p1 = Person(name:'Max', age: 16);