无法从p标记中删除粗体效果

时间:2018-05-21 13:23:49

标签: html css

我似乎无法删除对我的p标签的粗体效果。在地址出现的地方,我希望这是正常情况。有关如何做的任何帮助。谢谢。该页面的链接是 - http://www.penninetoolsaerospace.com/

另外,如何使段落彼此更接近?

TextBlock

这是CSS -

/ ---启动内容报头---- /

.content-header h1 {

<html>

<head>

<title>Pennine Tools Aerospace LTD - Website Coming Soon</title>

<meta name="viewport" content="width=device-width, initial-scale=1">

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<meta name="keywords" content="Pennine Aerospace" />

<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>

<!--css-->

<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />

<!--/css-->

<!--fonts-->

<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>

<!--fonts-->



</head>

<body>

<div class="container1">

        <!-----start-wrap----->



            <!-----start-Content----->

<div class="content-header">

                    <img src="images/aerospace_logo.png" title="Pennine Tools Aerospace LTD Official Logo" alt="Pennine Tools Official Logo">

                    <p style="color:black; font-size: 28px;">New Website Coming Soon</p><p></p>

                    <p>&nbsp;</p>

                    <p>&nbsp;</p>


        <p style="color:black;">For all queries please contact</p><br>

     <p style="color: black;">Email: <a href="mailto:enquiries@penninetoolsaerospace.com">enquiries@penninetoolsaerospace.com</a></p>

    <p style="color:black;">Tel: 01282 815555</p>    

    <p>&nbsp;</p>


    <p style="color: black;;">Pennine Tools Aerospace Ltd</p>
    <p style="color: black;">Unit 1</p>
    <p style="color: black;">Ravenscroft Business Park</p>
    <p style="color: black;">Jackdaw Road</p>
    <p style="color: black;">Barnoldswick</p>
    <p style="color: black;">Lancashire</p>
    <p style="color: black;">BB18 6DX</p>

</div>
</div>

</body>

</html>

}

.content-header p {

color: #fff;

font-size: 4em;

font-weight: inherit;

}

color: #fff;

font-size: 1em;

font-weight: inherit;

word-spacing: 0.2em;

@media(最大宽度:1,024){

.content-header {

    text-align: center;

    margin-top: 0em;

}

.content-header {

        margin-top: 0em;

    }

}

@media(最大宽度:768px){

.content-header h1 {

    color: #fff;

    font-size: 3.4em;

    margin:0 0 0.3em 0;

}

.notify {

    width: 50%;

}

}

@media(最大宽度:640像素){

.content-header h1 {

    font-size: 2.5em;

    margin: 0 0 0.2em;

}

.content-header p {

    color: #fff;

    font-size: 0.85em;

}

.notify {

    width: 57%;

}

.notify input[type="text"] {

    width: 71%;

}

}

@media(最大宽度:480像素){

.content-header h1 {

    font-size: 0em;

}

.notify {

    width: 75%;

}

}

@media(最大宽度:320像素){

.content-header h1 {

    font-size: 1.5em;

    margin:0 0 0.5em;

}

.content-header p {

    font-size: 0.8em;

    line-height: 1.6em;

}

.notify {

    width: 71%;

    padding: 1em;

    margin-top: 1em;

}

.notify input[type="text"] {

    width: 52%;

}

.copy-right p {

    font-size: 0.7em;

}

}

1 个答案:

答案 0 :(得分:0)

您的字体系列只有粗体字体。所以你需要这个版本的普通样式字体。如果它在这个字体系列中可用。

enter image description here

相关问题