Examination #127216 · Microsoft/vscode · GitHub, How to include images in Visual Studio Code HTML (Example) | Treehouse Community

How to include images in visual studio html code

There is an error: End Of File Expected ! Why ?
“Workbench.Colortheme “:” GCKN “,
“Workbench.statusbar.Visible “: False,
“Emmet.triggerexpensionontab “: True,
“Files.associations”: ,
“Editor.Defaultformatter “:” esbenp.Prettier-VSCODE “,
“Editor.Formatonsave “: True,
“Editor.FormatonPaste “: True,
>

SAVED Searches

Use saved Searches to filter your results More Quickly

Cancel Create Saved Search

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window window. Reload to refresh your session. You Switched Accounts on Another Tab or Window. Reload to refresh your session.

Microsoft / vscode Audience

Have a question about this project? SIGN UP for a free github birthday to open an outcome and contact its maintainers and the community.

By clicking “Sign Up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you birth report emails.

Already on github? Sign in to your birth

setings.JSON #127216

FireGueur71 Opened this Issue Jun 26, 2021 · 4 Comments

setings.JSON #127216

FireGueur71 Opened this Issue Jun 26, 2021 · 4 Comments

*English-please Issue Not Using English Info-Needed Due Require More Information from Poster Translation-Required-French

Comments

Firegue71 Commented Jun 26, 2021

We wrote the necessary data in your clipboard, as it was too large to send. Please stick them.

Type result: Bug

There is an error: End Of File Expected ! Why ?
“Workbench.Colortheme “:” GCKN “,
“Workbench.statusbar.Visible “: False,
“Emmet.triggerexpensionontab “: True,
“Files.associations”: ,
“Editor.Defaultformatter “:” esbenp.Prettier-VSCODE “,
“Editor.Formatonsave “: True,
“Editor.FormatonPaste “: True,
>

 "tag": "!"," Color ":"#FF2D00 "," Strikethrough ": False," Underline ": False," Backgroundcolor ":" Transparent "," Bold ": False," Italic ": False> < "tag": "?", "color": "#3498DB", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false >, < "tag": "//", "color": "#474747", "strikethrough": true, "underline": false, "": "transparent", "bold": false, "italic": false >, < "tag": "todo", "color": "#FF8C00", "strikethrough": false, "underline": false, "backgroundColor": "transparent", "bold": false, "italic": false >,

VS Code Version: Code 1.57.1 (507ce72, 2021-06-17T13: 28: 07.755Z)
OS version: Windows_nt X64 10.0.19042
Restricted mode: no

System Info

Item Value
Cpus Intel (R) Pentium (R) CPU 4405U @ 2.10GHz (4 x 2112)
GPU Status 2d_canvas: Enabled
GPU_Composing: Enabled
multiple_ster_threads: enabled_on
oop_rasterization: enabled
OpenGL: Enabled_on
Rasserization: Enabled
skia_render: enabled_on
Video_decode: Enabled
Vulkan: disabled_off
Webgl: Enabled
Webgl2: Enabled
LOAD (AVG) undefined
Memory (System) 3.89GB (0.62gb free)
Argv process –Crash-Reporter-ID 900CA596-0F14-44AC-AE5F-9AC799214073
Screen Reader no
VM 0%

Extensions (23)

Extension Author (Truncated) Version
better-comments aar 2.1.0
VSCODE-Standardjs-SNIPPETS cap 0.8.15
Empery because 1.0.0
Turbo-Console-Log Cha 2.1.6
VSCODE-Standardjs che 1.4.1
BRACket-PAIR-COLORIZER Coe 1.0.61
Cart-Code Dar 3.23.1
flutter Dar 3.23.0
Moxer-icons Equ 5.8.0
Prettier-VSCODE bunch 8.0.1
Mithril-Emmet Fal 0.7.6
auto-rename-tag for 0.1.6
terminal for 0.0.10
VSCODE-ANGULAR2-EMMET jak 2.0.3
VSCODE-LANGUAGE-PACK-FR Ms- 1.57.1
Getcodingknowledge-Pack nox 0.14.0
VSCODE-GITIGNORE-GENERATOR Pio 1.0.3
live-sass laughter 3.0.0
Liver laughter 5.6.1
errorlens worn 3.2.7
VSCODEINTELLICODE Screw 1.2.14
VSCODE-IS VSC 11.5.0
VSCODE-TODO-HIGHLIGHT way 1.0.4

(1 Theme Extensions Excluded)

VSLIV368CF: 30146710 VSREU685: 30147344 PYTON383CF: 30185419 PYTONVSPYT602: 30300191 VSPOR879: 30202332 VSPOR708: 30202333 VSPOR363: 30204092 vstes627: 3024433 YT639: 30300192 PYTHONTB: 302838111 PYTONVSPYT551: 30311712 VSPRE833: 30321513 PYTONPTPROFER: 30281270 VSHAN820: 30294714 Pythondatavier: 30285071 VSCUS158: 30321503 55CF: 30323309 VScorehov: 30309549 VSCOD805: 30301674 PYTONVSPYT200: 30329803 BINARIESV615: 30325510 

The text was updated successfully, but these errors we encourage:

How to include images in visual studio html code

Hi! Recently, i finished the video looking “adding images to the page” in the html section of treehouse. I Went Onto My Editor (Visual Studio Code), Though, To Try It On My Own, and I Couldn’t Figure Out How To Move A picture from my computer onto the Practice Website I was trying to build. Can anyone offered any suggestions? Thanks!

1 yearswer

Tarran Prior

Tarran Prior

Student 3,155 points

Tarran Prior

Student 3,155 points
August 17, 2019 11:36 am

Hey Jeff! So Assuming You’ve Created A .HTML Document in Visual Studio Code With the Necessary Markup, you can add images to your own practical page by using the tag. You can then define the rental of the image using the “src” attribute within that tag. For Example, if you have a folder named “images” and the image you want to display is named “myimage.jpg ” – you would simply add the following.

html> head> title>My Practice Page!title> head>  body> img src="Images/Myimage.JPG ">  body> html> 

Keep in mind that in this instance, the .HTML Document Should be located in the parent directory of the “images” folder. If the image is located in the same folder as the .HTML Document, You WOULD SIMPLY USE.

img src="myimage.JPG "> 

Hope this helps! Let me know if you have any further questions. 🙂

Jeff Jones
Jeff Jones

August 17, 2019 3:53 pm

Thanks, Tarran! I really apprecate it. I’ll give it a try and get back to you later if i have any more questions. Really Helps! 🙂

Posting to the forum is only allowed for members with active account.
Please sign in or sign up to post.

Thanks! You've already liked this
No comments