-
Notifications
You must be signed in to change notification settings - Fork 0
Vue Workflow: Creating the Frontend
Bryan M Lecza edited this page Nov 27, 2023
·
24 revisions
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:
<form>
<label></label>
<input></input>
</form>
And while its not necessarily the best option for styling, you can change fonts, text sizes, or even colors with it.