First, you'll need NodeJS and NPM:
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
nodejs -v
v8.4.0
First, you'll need NodeJS and NPM:
sudo apt install curl
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
nodejs -v
v8.4.0
| Html Syntax | |
| -trees: type of data | |
| - parent ( Parent to siblings) | |
| - child ; child | |
| -<div> : division : groups content together | |
| -<div> content </div> : content is just not text , can be anything . therefore div is the parent to content inside | |
| Html Structure Part 2 | |
| -doctype: describes type of htl | |
| - different types (html: common) | |
| -<head></head> : describes meta information about site ( site title , links) |
| <template> | |
| <div> | |
| <br> | |
| <div class="row row-cols-1 row-cols-md-2"> | |
| <div class="col mb-4"> | |
| <div class="card"> | |
| <div v-if="imageData!=null"> | |
| <img :src="idPicture" class="card-img-top" alt="#"> | |
| </div> | |
Full repository here.