0

在尝试学习 HTML 时,我认为编辑一些简单的代码可能是个好主意。所以,我导航到我认为是网站上的简单布局,并将源代码复制到我的桌面。我做了一些小的更改,然后尝试在浏览器中重新打开 HTML 文件以查看更改。

整个方案都被变形了,而不是相同的布局进行了一些小的调整。措辞都在那里(不再格式化),但背景现在是白色的,所有链接都结构性地出现在屏幕左侧的一列中。

那么,从本质上讲,学习 HTML 的最佳方法是什么?为什么我的编辑尝试没有奏效?是否需要比简单源保存提供的文件更多的文件?

4

3 回答 3

2

The HTML likely references things by RELATIVE PATH, e.g. a CSS File included with /styles/... not http://originaldomain.com/styles/... So if you just saved the HTML, none of the relative paths will resolve. Most browsers allow you to file --> save page as, which will copy not just the file but also the resources.

于 2013-07-16T17:25:34.677 回答
1

Try www.w3schools.com/html/ should give you a good start and a good understanding. Don't try and run before you can walk! And try learning CSS aswell

于 2013-07-16T17:25:21.087 回答
1

您需要的文件是外部 CSS 文件。它链接到文档的头部。这个网站比 w3schools 好,www.w3fools.com
那里有很多视频。试试 www.reddit.com/r/learnprogramming 这个社区非常悠闲和友好!

于 2013-07-16T19:34:02.040 回答