HTML 网站错误,什么是 ä 符号?

标签 html css

<分区>

我第一次打码网站,出现这些符号是什么原因?有小费吗?干杯。

http://imgur.com/a/1b32g

01010101010110101010100001010010101010101101010101000010100101010101011010101010000101001010101010110101010100001010010 101010101101010101000010100101010101011010101010000101001010101010110101010100001010010101010101101010101000010100101010101 011010101010000101001010101010110101010100001010010101010101101010101000010100101010101011010101010000101001010101010110101 0101000010100101010101011010101010000101001010101010110101010100001010

https://jsfiddle.net/fc8q0qo8/

HTML

<!DOCTYPE html>  
<html>
<head>
<title> Home </title>
   <link rel="stylesheet" href="index.css" type="text/css"/>
</head>

<div class="container"> 
<div class="logo">
   <h1 align="center">
   <img src="logo2.png" height="110" width="500"  alt="A.Willi A.G" />
</h1>     
</div>

<div class="menu_div"> <!--MENU DIV-->
<ul>
   <li><a href="index.html">Home</a></li> 
   <li><a href="contact.html">Kontakt</a></li>
   <li class="dropdown">
   <a href="#" class="dropbtn">Bewerber</a>
   <div class="dropdown-content">
   <a href="info.html">Info</a>
   <a href="jobs.html">Jobs</a>
</div>  
</li>      

<li class="dropdown"> <!--DRPDWN CLIENTS-->
<a href="#" class="dropbtn">Kunde</a>
<div class="dropdown-content">
   <a href="personnel.html">Personalverleih</a>
   <a href="rental.html">Werkzeuge Mieten</a>
   <a href="refrences.html">Referenzen</a>
   <a href="quali.html">Qulität, Sicherheit und Weiterbildung</a>
</ul>
</li>
</div>

<div class="fadein"> <!--SLIDESHOW-->
   <img src="slideshow2.png">
   <img src="slideshow2.png">
   <img src="slideshow2.png"> 
</div>
    <p style="text-align:left;">
     Die <font color="#004b77"><b>A.Willi A.G</b></font> ist als Personalverleiher in der gesamten Schweiz und im Ausland erfolgreich tätig mit über 30-jährige Erfahrung in dieser Sparte. </p>

<footer class="footer-distributed"> <!--LEFT LOGO FOOT-->
<div class="footer-left"> 
   <img src="awlogoblue.png" height="50" width="250" alt="A.Willi A.G" />   
   <p class="footer-links">     <!--LINKS-->
   <a href="#">Home</a>·
   <a href="#">Zertifikate</a>·
   <a href="#">Datenschutz-Bestimmungen</a>·
   <p class="footer-company-name">&copy;2016 A.Willi A.G</p>
</div>

<div class="footer-center"> <!--CENTER-->
<div>
   <i class="fa fa-map-marker"></i>
   <p><span>Wasgenring 94</span> CH-4055 Basel</p>
</div>
<div>
   <i class="fa fa-phone"></i>
   <p>+1 555 123456</p>
</div>
<div>
   <i class="fa fa-envelope"></i>
   <p><a href="mailto:support@company.com">support@awilliag.ch</a</p>
</div>
</div>

<div class="footer-right"> <!--RIGHT-->
  <p class="footer-company-about">
  <span>About the company</span>
  Lorem ipsum dolor sit amet, consectateur adispicing elit. Fusce euismod convallis velit, eu auctor lacus vehicula sit amet.
</p>
<div class="footer-icons">
   <a href="#"><i class="fa fa-facebook"></i></a>
   <a href="#"><i class="fa fa-twitter"></i></a>
   <a href="#"><i class="fa fa-linkedin"></i></a>
   <a href="#"><i class="fa fa-github"></i></a>
</div>
</div>
</footer>            

</body> 
</div>
</html>

CSS

body 

/* font & back clr */

{ font-family: verdana; background:whitesmoke ; color:black; }


.menu_div{ 

background: black; 
width:100%;}


ul {
    list-style-type: none;
    margin: 0 auto;
    display:table;
    padding: 0;
    z-index: 100;
    overflow: hidden;
}

.logo {
    height:   
    bottom: 0;
    position: relative;





   } 




li {
    float: left;
}


/* DROPDOWN Txt Color */

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


/* DROPDOWN Txt BOX Color */


li a:hover, .dropdown:hover .dropbtn {
    background-color: #33383b;
}



li.dropdown {
    display: inline-block;
}


/* DROPDOWN content clr */

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
}

/* DROPDOWN TEXT CLR */

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}


/* DROPDOWN COL BOX */
.dropdown-content a:hover {background-color: white}



.dropdown:hover .dropdown-content {
    display: block;
}

        @keyframes fade {
        0%   { opacity: 0; }
        11.11%   { opacity: 1; }
        33.33%  { opacity: 1; }
        44.44%  { opacity: 0; }
        100% { opacity: 0; }
}

/* MENU COL */

.menu_div { 
  position: relative;
  z-index: 0;
  height: 2.9em;
  margin-bottom: -0.4em;
  margin-top: 0em;
  z-index:1000;
  width: auto;
  background-color:#33383b;
}



/* slideshow header */



.fadein { 
position: relative;
    z-index: 3;
    width: 12%;
    top: 0em;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid white;
    height: 250px;
  }

.fadein img{
    margin:0 auto;
    width: 100%;
    max-height: 400%;
}



.fadein img { position:absolute; left:0; right:0; opacity:0; animation-name: fade; animation-duration: 9s; animation-iteration-count: infinite; }
    .fadein img:nth-child(1) { animation-delay: 0s;  }
    .fadein img:nth-child(2) { animation-delay: 3s;  }
    .fadein img:nth-child(3) { animation-delay: 6s;  }



/* page container */



.container {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}



/* article from jobs */


.article {
    text-align: left;
    height: 200px;
    margin-bottom:11px
}




/* body of text */



textinfo {
width: 300px;
border: 25px solid green;
padding: 25px;
margin: 25px;



/* footer opts */



}

.footer-distributed{
    background-color: #292c2f;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;

    padding: 30px 30px;
    margin-top: 100px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
}

/* footer left */

.footer-distributed .footer-left{
    width: 40%;
}

/* the company logo */

.footer-distributed h3{
    color:  #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}

.footer-distributed h3 span{
    color:  #5383d3;
}

/* footer links */

.footer-distributed .footer-links{
    color:  #ffffff;
    margin: 20px 0 12px;
    padding: 0;
}

.footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    text-decoration: none;
    color:  inherit;
}

.footer-distributed .footer-company-name{
    color:  #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* footer center */

.footer-distributed .footer-center{
    width: 35%;
}

.footer-distributed .footer-center i{
    background-color:  #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p{
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
    margin:0;
}

.footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
}

.footer-distributed .footer-center p a{
    color:  #5383d3;
    text-decoration: none;;
}


/* footer right */

.footer-distributed .footer-right{
    width: 20%;
}

.footer-distributed .footer-company-about{
    line-height: 20px;
    color:  #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span{
    display: block;
    color:  #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons{
    margin-top: 25px;
}

.footer-distributed .footer-icons a{
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color:  #33383b;
    border-radius: 2px;

    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;

    margin-right: 3px;
    margin-bottom: 5px;
}

/* un responsive rmoval */

@media (max-width: 880px) {

    .footer-distributed{
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right{
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-distributed .footer-center i{
        margin-left: 0;
    }


logo {

margin-bottom:100px;

     }

最佳答案

您必须提供字符集以提供特殊符号,例如“äöüÄÖÜ”。

只需将此元标记添加到您的头部即可:

<meta charset="UTF-8">

关于HTML 网站错误,什么是 ä 符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40796539/

上一篇:html - 如何垂直对齐这些图片?

下一篇:html - parent-div overflow-y 打破了 child-div 的边界

相关文章:

jquery - 显示幻灯片的加载条,预加载图像,然后显示幻灯片

javascript - 提示框重新创建自身,直到输入正确的字段

html - header.php 背景图像在不同页面上看起来不同。可能是浏览器问题?

html - 我可以直接在 html 页面中进行 XSLT 转换吗?

javascript - 如何从服务响应中停止 html 上的多个事件处理程序 onclick?

html - 不透明度只有CSS中的div

javascript - 使用 prev 和 next 动画 CSS3 旋转 onclick

html - 强制 margin 空间?

javascript - 基于更改按钮颜色的比较模态输入值和目标输入值

html - 两个文本区域以最小宽度并排,但当文本较长时折叠左侧