Skip to content

Vue Workflow: Creating the Frontend

Bryan M Lecza edited this page Nov 27, 2023 · 24 revisions

Vue

HTML

HTML or Hypertext Markup Language is the standard markup language for creating a displaying documents on a website. It is like the skeleton of the webpage as it is where you put all of the text of the webpage. It allows you to create lists with bullet points, forms, hyperlinks. In HTML, all of your elements are contained within tags (<></>). For example, if I wanted to create a form, I could do: "

" "" "" ""

And while its not necessarily the best option for styling, you can change fonts, text sizes, or even colors with it.

CSS

Javascript