مشاركة حلول مهمة: صفحة تنسيقات خارجية

مرحباً جميعاً

المهمة المطلوبة:

بإمكانك الإطلاع عليها من هنا

يتوقع منك أن تقوم بإرفاق التالي:

  • صورة لمجلد المشروع كالتالية:

  • كود صفحة index.html

طريقة مشاركة الأكواد التي قمت بكتابتها:

قم بنسخ الأكواد من بيئة العمل ومن ثم لصقها بين هذه العلامات

```
هنا ضع الأكواد
```

شاهد الفيديو التالي لتعرف طريقة مشاركة الأكواد للمنتدى بشكل منسق

3 Likes

مهمة صفحة التنسيقات الخارجية
Captureqq

كود HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Store</title>
    <link href="https://fonts.googleapis.com/css?family=Domine" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
    <link rel="stylesheet" href="style.css">



</head>
<body>
    <header>
            <h1><a href="index.html">Store</a></h1>
    </header>

    <main>
        <h2>Featured Products</h2>
        <p>Refresh your look with pieces of our collection</p>
        <div>
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg" alt="photo1">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg" alt="photo2">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg" alt="photo3">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg" alt="photo4">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg" alt="photo5">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg" alt="photo6">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img7.jpg" alt="photo7">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img8.jpg" alt="photo8">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img9.jpg" alt="photo9">
        </div>
        <a href="product.html">More products</a>
    </main>

    <footer>
        <p>&copy; 2019 All Right Reserved</p>
    </footer>
</body>
</html>

كود CSS

body{

    margin: 0;
    font-family: 'Questrial', sans-serif;
}    
header{
    height: 80px;
    border-bottom: 1px dotted #666666; 
}

header h1 {
    text-align: center;
    font-family: 'Domine', serif;
    font-size: 24px;
    letter-spacing: 6px;
    line-height: 80px;
    margin: 0;
    text-decoration: none;
    
    
}

header h1 a{
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    
}

main{
    max-width: 960px;
    text-align: center;
    margin: 90px auto 90px auto;
}

main h2{
    font-size: 30px;
    font-weight: normal;
    margin: 0;
}

main p{
    color: #999;
    font-size: 18px;

}

main div{
    margin: 60px 0 60px 0;
}

main img {
    margin: 10px;
    width: 290px;
    height: 335px;
    box-sizing:border-box;
    transition-duration: .4s;
}

main img:hover {
    padding: 28px;
    background-color: #ddd;
}

main a{
    width: 160px;
    height: 40px;
    display: block;
    margin: 0 auto 0 auto;
    line-height: 40px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #ccc;
    color: #ccc;
    transition-duration: .4s;
}

main a:hover{
    background-color: #222;
    color: #fff;
    border-color: #222;
}

footer{
    background-color:#222;
    height: 50px;
    color: #999;
    text-align: center;
    line-height: 50px;   
}

:star_struck::muscle:

2 Likes

مية مية :star_struck::+1:

2 Likes


HTML

    
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>THE STORE</title>
    <link rel="stylesheet" type="text/css" href="style.css">
    <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
</head>

<body>
    <header>
        <h1><a href="index.html">STORE</a></h1>
    </header>
    <main>
        <h2>Featured Products</h2>
        <p>Refresh your look with pieces of our collection</p>
        <div>
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
            <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
        </div>
        <a href="products.html">More Products</a>

    </main>
    <footer>
        <p>&copy; 2018 All Rights Reserved.</p>
    </footer>

</body>

</html>

CSS

    body {
    margin: 0;
        font-family: 'Questrial', sans-serif;
}

header {
    height: 80px;
    border-bottom: 1px dashed #ccc;
}

header h1 {
    text-align: center;
    font-size: 24px;
    font-family: 'Domine', serif;
    letter-spacing: 6px;
    line-height: 80px;
    margin: 0;
}
header h1 a {
    color: #222;
    text-decoration: none;
}
main {
    max-width: 960px;
    margin: 90px auto 90px auto;
    text-align: center;

}

main h2 {
    font-size: 30px;
    font-weight: normal;
    margin: 0;

}

main p {
    color: #999;
    font-size: 18px;
}

main img {
    margin: 1%;
    height: 335px;
    width: 290px;
    box-sizing: border-box;
    transition-duration: 0.5s;
}
main img:hover {
    padding: 20px;
    background-color: #ddd;
}
main div {
    margin: 6% auto 9% auto;

}

main a {
    color: #000;
    border: 1px solid;
    padding: 10px;
    text-decoration: none;
    transition-duration: 0.5s;
}
main a:hover {
    background-color: #222;
    color: #fff;
    border-color: #222;
}
footer {
    background-color: #191919;
    padding: 6px;

}
footer p {
    color: #ccc;
    text-align: center;
}
2 Likes

ممتاز محمد، أنت سبق وقمت بهذه المهمة منذ البدأية :muscle:

2 Likes

ممتاز محمد، أنت سبق وقمت بهذه المهمة منذ البدأية :muscle:

نعم بس المشاركة ماتتعوض بهيجي كومينتي حتى باصغر الاشياء :grin::wink:

2 Likes

لم أقصد بأنة لم يجب عليك المشاركة :joy:
وإنما قصدت بأنك سبقتنا بهذه المهمة :muscle:

2 Likes

لم أقصد بأنة لم يجب عليك المشاركة :joy:
وإنما قصدت بأنك سبقتنا بهذه المهمة :muscle:

نسعى لنكون الاوائل دائما ارضائكم غاية لاتدرك :joy::joy:

2 Likes

:joy::joy:

1 Like

Html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>STORE</title>
        <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <header>
            <h1><a href="index.html">STORE</a></h1>
        </header>
        <main>
            <h2>Featured Products</h2>
            <p>Refresh your look with pieces of our collection</p>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
            <a href="Products.html">More Products</a>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>
2 Likes

رائع بن يحيى :+1:

2 Likes

index.html

<!DOCTYPE html>
<html>
    <head><link rel="stylesheet" href="normalize.css">
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>STORE</title>
        <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <header>
            <h1>
                <a href="index.html">STORE</a>
            </h1>
        </header>
        <main>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>

CSS

body{
    margin: 0;
    font-family: 'Questrial', sans-serif;
}
header{
    height: 80px;
    border-bottom: 1px dotted #ccc;
}
header h1{
    text-align: center;
    font-family: 'Domine', serif;
    font-size: 24px;
    letter-spacing: 6px;
    line-height: 80px;
    margin: 0;
}
header h1 a{
    color: #222;
    text-decoration: none;
}
main {
    max-width: 960px;
    text-align: center;
    margin: 90px auto 90px auto;
}
main h2{
    font-size: 30px;
    font-weight: normal;
    margin: 0;
}
main p{
    color: #999;
    font-size: 18px;
}
main div{
    margin: 60px 0 60px 0;
}
main img{
    margin: 10px;
    width: 290px;
    height: 335px;
    box-sizing: border-box;
    transition-duration: .4s;
}
main img:hover{
    padding: 20px;
    background-color: #ddd;
}
main a{
    width: 160px;
    height: 45px;
    display: block;
    margin: 0 auto 0 auto;
    line-height: 45px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #ccc;
    color: #666;
    transition-duration: .4s;
}
main a:hover{
    background-color: #222;
    color: #fff;
    border-color: #222;
}
footer{
    background-color: #222;
    height: 50px;
    color: #999;
    text-align: center;
    line-height: 50px;
} 

3 Likes

ممتاز بإمكانك الإنتقال للدرس التالي :muscle:

2 Likes

مرحباً :hatched_chick::baby_chick::baby_chick:

<!DOCTYPE html>
<html>
    <head><link rel="stylesheet" href="normalize.css">
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>STORE</title>
        <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <header>
            <h1>
                <a href="index.html">STORE</a>
            </h1>
        </header>
        <main>
            <h2>Featured Products</h2>
            <p>Refresh your look with pieces of our collection</p>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
            <a href="products.html">More Products</a>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>

3 Likes

ممتاز مروان :ok_hand:

3 Likes

body{
    margin: 0;
    font-family: 'Questrial', sans-serif;
}
header{
    height: 80px;
    border-bottom: 1px dotted #ccc;
}
header h1{
    text-align: center;
    font-family: 'Domine', serif;
    font-size: 24px;
    letter-spacing: 6px;
    line-height: 80px;
    margin: 0;
}
header h1 a{
    color: #222;
    text-decoration: none;
}
main {
    max-width: 960px;
    text-align: center;
    margin: 90px auto 90px auto;
}
main h2{
    font-size: 30px;
    font-weight: normal;
    margin: 0;
}
main p{
    color: #999;
    font-size: 18px;
}
main div{
    margin: 60px 0 60px 0;
}
main img{
    margin: 10px;
    width: 290px;
    height: 335px;
    box-sizing: border-box;
    transition-duration: .4s;
}
main img:hover{
    padding: 20px;
    background-color: #ddd;
}
main a{
    width: 160px;
    height: 45px;
    display: block;
    margin: 0 auto 0 auto;
    line-height: 45px;
    text-decoration: none;
    font-size: 18px;
    border: 2px solid #ccc;
    color: #666;
    transition-duration: .4s;
}
main a:hover{
    background-color: #222;
    color: #fff;
    border-color: #222;
}
footer{
    background-color: #222;
    height: 50px;
    color: #999;
    text-align: center;
    line-height: 50px;
}

<!DOCTYPE html>
<html>
    <head><link rel="stylesheet" href="normalize.css">
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>STORE</title>
        <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
        <link rel="stylesheet" href="style.css"
    </head>
    <body>
        <header>
            <h1>
                <a href="index.html">STORE</a>
            </h1>
        </header>
        <main>
            <h2>Featured Products</h2>
            <p>Refresh your look with pieces of our collection</p>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
            <a href="products.html">More Products</a>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>

3 Likes

ممتاز، ملاحظة واحدة نسيتي إغلاق الكود التالي:

 <link rel="stylesheet" href="style.css"

العلامة >

2 Likes

assalam!

<!DOCTYPE html>
<html>
    <head><link rel="stylesheet" href="normalize.css">
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>STORE</title>
        <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
        <link rel="stylesheet" href="styles.css">
    </head>
    <body>
        <header>
            <h1>
                <a href="index.html">STORE</a>
            </h1>
        </header>
        <main>
            <h2>Featured Products</h2>
            <p>Refresh your look with pieces of our collection</p>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
            <a href="products.html">More Products</a>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>
2 Likes

well done

2 Likes

css
html code

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>STORE</title>
    <link href="https://fonts.googleapis.com/css?family=Domine|Questrial" rel="stylesheet">
    <link rel="stylesheet" href="style.css">       
</head>
<body>
        <header>
                <h1>
                    <a href="index.html">STORE</a>
                </h1>
        </header>
        <main>
            <h2>Featured Products</h2>
            <p>Refresh your look with pieces of our collection</p>
            <div>
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img1.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img2.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img3.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img4.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img5.jpg">
                <img src="https://demos.coretabs.net/frontend-basics-workshop/img/img6.jpg">
            </div>
            <a href="products.html">More Products</a>
        </main>
        <footer>
            <p>&copy; 2018 All Rights Reserved</p>
        </footer>
    </body>
</html>

css code

body {
    margin: 0px;
    font-family: 'Questrial', sans-serif;
}
header {
    margin: 0;
    border-bottom: 1px dotted #cccccc;
    height: 80px;
}
header h1 {
    font-family: 'Domine', serif;
    text-align: center;
    line-height: 80px;
    letter-spacing: 6px;
    font-size: 24px;

}
header h1 a{
    color: #222222;
    text-decoration: none;
}
main {
   max-width: 950px; 
   margin: 90px auto 90px auto;
   text-align: center; 
}
main h2 {
    font-size: 30px;
    font-weight: normal;
    margin: 0px;
}
main p{
    color: #999999;
    font-size: 18px;
}
main div {
    margin: 60px 0 60px 0;
}
main img {
    margin: 10px;
    width: 290px;
    height: 335px;
    transition-duration: 0.4s;
}
main img:hover{
    padding: 20px;
    background-color: #cccccc;
    box-sizing: border-box;
}
main a {
    margin: 0 auto 0 auto;
    width: 160px;
    height: 40px;
    border: 2px solid #cccccc;
    color: #666666;
    text-decoration: none;
    padding: 5px;
    display: block;
    line-height: 40px;
    font-size: 20px;
    transition-duration: 0.4s;
}
main a:hover{
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}
footer {
    text-align: center;
    background-color: #222222;
    color: #999999;
    height: 50px;
    line-height: 50px;
}
2 Likes