Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我的HTML和CSS文件赢了';t链接请求_Html_Css - Fatal编程技术网

我的HTML和CSS文件赢了';t链接请求

我的HTML和CSS文件赢了';t链接请求,html,css,Html,Css,html是这样的: <html> <head> <title>In Loving Memory of Jill Erin Hayes</title> <link rel="stylesheet" type="text/css" href="/additional_pages/fp_frye.css" /> </head> <body> <div id="maincontent"> <div i

html是这样的:

<html>
<head>
<title>In Loving Memory of Jill Erin Hayes</title>
<link rel="stylesheet" type="text/css" href="/additional_pages/fp_frye.css" />
</head>

<body>
<div id="maincontent">
<div id="left">
<h1>Jill E. Hayes</h1>
<ul><li>mother</li>
<li><a href="https://www.utm.edu/departments/finearts/vanguard/index.php">actress</a></li>
<li>election commissioner</li>
<li>and so very much more</li>
</div>

<div id="right">
<h2>Her Story</h2>
<p>Born to Jerry and Debbie Hayes in Henry, TN in 1980, Jill was always very creative and fun. 
She flew through school, active in 4-H and theatre, all while maintaining good grades and a 
positive outlook on life. She attended the University of Tennessee at Martin after graduating Henry 
County High School, and in college, she majored in theatre and was a very active member of UTM's 
Vanguard theatre program. She met Joseph Frye in college, and the married and had two children,
Shelby, named after her favorite play, <i>Steel Magnolias</i>, and Hayes, named for her maiden name.</p>

<p>Jill gave up her dreams of Broadway to be a mother, and she got a job as the Henry County 
Administrator of Elections, where she not only helped her police officer husband raise their family, but 
also was able to be active in the democratic system, which she had always been passionate about. She worked 
elections for fifteen years before illness struck, and she was forced to resign to focus on regaining her 
health.</p>

<p>Lupus is, unfortunately, into a disease that garners much attention, despite being a fatal one. Jill went
to countless doctors attempting to find out what was wrong with her before she was finally diagnosed with lupus,
an aggressive autoimmune disease. This on top of being forced to quit her job as well as the divorce that 
ended a regrettably failing marriage was hard on her, but she still persevered to be the mother that 
both of her children needed. She managed to live with lupus for six years, before passing away at her parents'
home on October 18, 2015, just weeks before her 25th birthday.</p>
</div>
</div>
</body>
</html>

我不明白为什么它不会链接,而且我已经访问了关于这个主题的其他几个论坛主题。我对编码非常陌生-这是一门毕业必修课-我需要帮助。

根据您发布的内容,您的css文件应该位于名为additional_pages的目录中,并且应该具有fp_frye.css的名称

检查你的css文件是否在正确的位置

UPD:

更改此行:

<link rel="stylesheet" type="text/css" href="/additional_pages/fp_frye.css" />

致:



请注意,在第一个代码中“/”试图访问c:/additional_pages/fp_fryes.css,而实际路径并非如此

您的文件结构是什么?是否检查了浏览器的调试控制台?也许你们的
href
错了。谢谢大家!我能解决这个问题,但现在我无法获得图像显示。。。“看来我真的不适合编码。”谢尔比,看看这是否解决了你的问题!
<link rel="stylesheet" type="text/css" href="/additional_pages/fp_frye.css" />
<link rel="stylesheet" type="text/css" href="additional_pages/fp_frye.css" />