You are on page 1of 2

https://www.humanlevel.

com/articulos/page/2

https://www.revistabyte.es/actualidad-byte/tendencias-desarrollo-web-2018/

https://disenowebak

https://disenowebakus.net/la-vida-util-de-un-sitio-web.php

http://salamancartvaldia.es/not/86761/webs-adaptadas-a-moviles/

http://www.informaticamilenium.com.mx/es/articulos/diseno-web.html

parcial angular

https://github.com/jakblak/ng4_CRUD/tree/master/app/nav

curl -sL https://deb.nodesource.com/setup_6.x | sudo-E bash -

import { Component } from '@angular/core';

@Component({

selector: 'my-app',

template: `<h1>Hello {{name}}</h1>

<button (click)="decrement()">-</button>

<span>{{counter}}</span>

<button (click)="increment()">+</button>

`,

})

export class AppComponent {

name = 'Jhon Haide Cano Beltrán';


counter = 0;

decrement() {

this.counter--;

increment() {

this.counter++;

You might also like