操屁眼的视频在线免费看,日本在线综合一区二区,久久在线观看免费视频,欧美日韩精品久久综

新聞資訊

    > ? 源碼獲取 文末聯(lián)系 ?

    Web前端開發(fā)技術(shù) 描述 網(wǎng)頁(yè)設(shè)計(jì)題材,DIV+CSS 布局制作,HTML+CSS網(wǎng)頁(yè)設(shè)計(jì)期末課程大作業(yè) | 個(gè)人博客網(wǎng)站 | 個(gè)人主頁(yè)介紹 | 個(gè)人簡(jiǎn)介 | 個(gè)人博客設(shè)計(jì)制作 | 等網(wǎng)站的設(shè)計(jì)與制作 | 大學(xué)生個(gè)人HTML網(wǎng)頁(yè)設(shè)計(jì)作品| HTML期末大學(xué)生網(wǎng)頁(yè)設(shè)計(jì)作業(yè),Web大學(xué)生網(wǎng)頁(yè) HTML:結(jié)構(gòu)

    CSS:樣式 在操作方面上運(yùn)用了html5和css3, 采用了div+css結(jié)構(gòu)、表單、超鏈接、浮動(dòng)、絕對(duì)定位、相對(duì)定位、字體樣式、引用視頻等基礎(chǔ)知識(shí)

    :做與用戶的交互行為

    前端學(xué)習(xí)路線

    (1)html文件:其中index.html是首頁(yè)、其他html為二級(jí)頁(yè)面; (2)css文件:css全部頁(yè)面樣式,文字滾動(dòng), 圖片放大等; (3)js文件:js實(shí)現(xiàn)動(dòng)態(tài)輪播特效, 表單提交, 點(diǎn)擊事件等等(網(wǎng)頁(yè)中運(yùn)用到j(luò)s代碼)

    網(wǎng)頁(yè)基本結(jié)構(gòu)

    (1)首頁(yè):進(jìn)入網(wǎng)頁(yè)中看到的第一個(gè)頁(yè)面(LOGO、公司名稱、導(dǎo)航、、新聞、相關(guān)信息、底部信息、一般是5個(gè) (2)二級(jí)頁(yè)面:從首頁(yè)點(diǎn)擊進(jìn)入之后的頁(yè)面叫做二級(jí)頁(yè)面 (3)三級(jí)頁(yè)面:從二級(jí)頁(yè)面點(diǎn)擊進(jìn)入的頁(yè)面

    網(wǎng)頁(yè)html:網(wǎng)頁(yè)是構(gòu)成網(wǎng)站的基本元素,是承載各種網(wǎng)站應(yīng)用的平臺(tái)。通俗地說(shuō),網(wǎng)站就是由網(wǎng)頁(yè)組成的 首頁(yè)網(wǎng)站:首頁(yè)是一個(gè)網(wǎng)站的入口網(wǎng)頁(yè),故往往會(huì)被編輯得易于了解該網(wǎng)站多數(shù)作為首頁(yè)的文件名是index加上擴(kuò)展名 導(dǎo)航菜單:是指位于頁(yè)面頂部或者側(cè)邊區(qū)域的,也稱之為導(dǎo)航欄用dw制作最簡(jiǎn)單網(wǎng)頁(yè),它起著鏈接站點(diǎn)或者軟件內(nèi)的各個(gè)頁(yè)面的作用. 網(wǎng)頁(yè)頁(yè)腳:是網(wǎng)頁(yè)中每個(gè)頁(yè)面的底部的區(qū)域。常用于顯示附加信息。如作者、備案號(hào)等。

    網(wǎng)頁(yè)演示

    在這里插入圖片描述

    在這里插入圖片描述

    在這里插入圖片描述

    在這里插入圖片描述

    HTML結(jié)構(gòu)代碼

    
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <script src="js/swiper.min.js">script>
    <script type="text/javascript" src="js/index.js">script>
    <title>個(gè)人博客title>
    <style type="text/css">
    * {
        margin: 0;
        padding: 0;
    }
    .menus.menus1 h1 {
        vertical-align: sub;
        float: left;
        margin-top: 30px;
        font-size: 54px;
        text-transform: none;
        font-family: "華文行楷";
        font-weight: lighter;
        color: #000;
    }
    .banenr {
        height: 80px;
        width: auto;
        background-color: #eb4537;
    }
    .banenr .banner-bg h3 {
        font-size: 36px;
        font-weight: lighter;
        float: left;
        margin-top: 20px;
        color: #f1f1f1;
        margin-left: -30px;
    }
    .banner-bg {
        margin: auto;
        width: 1100px;
        height: 80px;
        padding-left: 0px;
    }
    a {
        color: #000;
        text-decoration: none;
    }
    li {
        list-style: none;
    }
    .clear {
        clear: both;
    }
    .menus {
        width: 1100px;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        height: 100px;
    }
    .menus ul {
        width: 700px;
        position: relative;
        float: right;
        margin-top: 20px;
        font-style: italic;
    

    用dw制作個(gè)人網(wǎng)頁(yè)_用dw制作最簡(jiǎn)單網(wǎng)頁(yè)_用dw制作一個(gè)網(wǎng)頁(yè)博客

    border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #ff5a5a; } .menus li { float: left; width: 100px; height: 40px; line-height: 40px; text-align: center; cursor: pointer; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; font-size: 24px; } .menus li:nth-child(2) { color: #fff; } .menus .bg { width: 100px; height: 40px; position:absolute; left: 0; top: 0; z-index: -1; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; background-image: url(picture/ban.png); /*動(dòng)畫隨鼠標(biāo)滑動(dòng)*/ } .tab { width: 750px; height: 500px; border: 1px solid #000; margin-top: 20px; font-size: 40px; line-height: 500px; text-align: center; color: #888; font-weight: bold; display: none; } .show { display: block; } #footer { text-align: center; vertical-align: middle; height: 150px; padding-top: 50px; color: #FFF; background-color: #333; } body { margin: 0px; background-color: #f1f1f1; } .slider { background-color: #C99; height: 620px; width: 1100px; margin-right: auto; margin-left: auto; margin-top: 0px; margin-bottom: 0px; border-radius: 12px; padding-bottom: 0px; } body { width:auto; margin: 0px; padding: 0px; } .slider1 { height: 600px; width: 1080px; margin-top: 10px; margin-right: 10px;

    用dw制作最簡(jiǎn)單網(wǎng)頁(yè)_用dw制作一個(gè)網(wǎng)頁(yè)博客_用dw制作個(gè)人網(wǎng)頁(yè)

    margin-left: 10px; overflow: hidden; border-radius: 12px; } .welcome-text { height: 200px; width: 1100px; margin-top: 12px; margin-right: auto; margin-bottom: 0px; margin-left: auto; background-color: #f1f1f1; font-size: 48px; text-align: center; vertical-align: middle; padding-top: 40px; } .scroll-td-text { height: 40px; width: 280px; text-align: center; vertical-align: middle; padding-top: 10px; font-size: 24px; } .introduce { height: 40px; width: 1100px; margin-right: auto; margin-left: auto; font-size: 24px; padding-top: 8px; border-bottom-width: 2px; border-left-width: 10px; border-bottom-style: solid; border-left-style: solid; border-bottom-color: #F00; border-left-color: #9F3; } .introduce-content { height: 500px; width: 1100px; margin-right: auto; margin-left: auto; background-color: #F0EBDB; margin-bottom: 5px; border-radius: 15px; } #img-introduce { background-color: #CC0; float: left; height: 480px; width: 620px; margin: 10px; } #text-introduce { margin: 10px; height: 480px; width: 440px; float: left; } .text-introducce { height: 100px; width: 440px; margin-bottom: 20px; margin-top: 10px; } .scroll { height: 380px; width: 1000px; margin-right: auto; background-color: #FFF; position: relative; overflow: hidden; margin-top: 20px; margin-bottom: auto; margin-left: auto; } .ms-ex { padding: 10px; height: 440px; width: 1100px; border: 1px solid #999; margin-right: auto; margin-left: auto; margin-top: 14px; margin-bottom: 14px;

    用dw制作一個(gè)網(wǎng)頁(yè)博客_用dw制作個(gè)人網(wǎng)頁(yè)_用dw制作最簡(jiǎn)單網(wǎng)頁(yè)

    } .text-box { height: 40px; width: 150px; margin-top: 20px; margin-bottom: 10px; margin-left: 10px; float: left; font-size: 30px; text-align: center; vertical-align: middle; padding-top: 10px; } .ms-exhibition p { height: 36px; margin-top: 0px; } .ms-exhibition { margin-right: auto; font-size: 36px; padding-top: 0px; text-align: center; height: 36px; width: 1000px; margin-left: auto; margin-bottom: 0px; margin-top: 0px; background-color: #f1f1f1; } #text-box1 { background-color: #FF6; border-radius: 12px; } #text-box3 { background-color: #F03; border-radius: 12px; } #text4 #text-box4 { background-color: #6F6; border-radius: 12px; } .swiper-container { width: 100%; height: 100%; margin-left: auto; margin-right: auto; } #text-box2 { background-color: #09F; border-radius: 12px; } .text-box-right { float: left; height: 80px; width: 250px; margin-top: 16px; margin-right: 0px; margin-bottom: 0px; margin-left: 10px; font-size: 18px; } .swiper-slide { text-align: center; font-size: 18px; background: #fff; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; margin-top: 10px; }

    用dw制作最簡(jiǎn)單網(wǎng)頁(yè)_用dw制作個(gè)人網(wǎng)頁(yè)_用dw制作一個(gè)網(wǎng)頁(yè)博客

    .scroll-in { height: 300px; width: 1080px; margin-top: 40px; margin-right: auto; margin-left: auto; } .scroll-td { height: 280px; width: 280px; margin-left: 0px; } h3 { font-size: 24px; line-height: 30px; font-family: "微軟雅黑"; text-indent: 48px; } h1 { line-height: 24px; font-size: 44px; } style> <link href="css/swiper.min.css" rel="stylesheet" type="text/css"> head> <body> <div class="menus menus1"> <h1>個(gè)人博客 h1> <ul> <div class="bg">div> <li><span><a href="javascript:;" target="blank">首頁(yè)a>span>li> <li><span><a href="xz.html" target="blank">游戲擴(kuò)列a>span>li> <li><span><a href="dumplings.html" target="blank">愛(ài)好a>span>li> <li><span><a href="drink.html">番劇a>span>li> ul> <div class="clear">div> div> <script src="js/jquery-1.10.2.js">script> <script src="js/index.js">script> <div class="banenr"> <div class="banner-bg"> <h3>一個(gè)在中國(guó)上學(xué)的學(xué)生h3> div>div> <div class="slider"> <div class="slider1"> <div class="swiper-container"> <div class="swiper-wrapper"> <div class="swiper-slide"><a href="dumplings.html" target="new"><img src="picture/jz.jpg">a>div> div> <div class="swiper-pagination">div> <div class="swiper-button-next">div> <div class="swiper-button-prev">div> div> <script> var swiper = new Swiper('.swiper-container', { slidesPerView: 1, spaceBetween: 30, loop: true, pagination: { el: '.swiper-pagination', clickable: true, }, navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev',

    用dw制作個(gè)人網(wǎng)頁(yè)_用dw制作最簡(jiǎn)單網(wǎng)頁(yè)_用dw制作一個(gè)網(wǎng)頁(yè)博客

    }, }); script> div> div> <hr> <div class="welcome-text"> <h1>歡迎您來(lái)到       我的個(gè)人空間h1> <h3> h3> <h3>歡迎你,在此偶遇的陌生人,希望你我的靈魂能夠發(fā)生有趣的碰撞。h3> div> <div class="introduce">個(gè)人簡(jiǎn)介div> <div class="introduce-content"> <div id="img-introduce"><img style="width: 100%;height: 100%;" src="picture/01.png"> div> <div id="text-introduce" class="text-introduce"> <div class="text-introducce" id="text1"> <div class="text-box" id="text-box1"> ·個(gè)人信息·div> <div class="text-box-right" id="box-right1"> <br> 年齡:20 <br> div> div> <div class="text-introducce" id="text2"> <div class="text-box" id="text-box2"> ·吃!·div> <div class="text-box-right" id="box-right2"> 最愛(ài)的食物:炸醬面<dr>dr> 最愛(ài)的飲料:椰果百香果汁div> div> <div class="text-introducce" id="text3"> <div class="text-box" id="text-box3">·留言·div> <div class="text-box-right" id="box-right-3">這里是我的個(gè)人博客,很高興你能訪問(wèn),在這里我會(huì)將我自己展現(xiàn)給你,希望你能通過(guò)我的自我介紹了解我,不僅是外在看起來(lái)的那樣,更多的是我的愛(ài)好與興趣,希望能與你有所交集。希望能通過(guò)這種方式,遇到志同道合的朋友,在一起聊聊興趣,在一起娛樂(lè)。div> div> div> div> <hr> <div class="ms-ex"> <div class="ms-exhibition"> <p>照片墻p>div> <div class="scroll"> <marquee direction="right" behavior="alternate" scrolldelay="200" onmouseover="stop()" onmouseout="start()"> <table width="2400" border="0" cellspacing="20" cellpadding="0"> <tr> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> <td class="scroll-td"><img style="height: 100%;" src="picture/01.png">td> tr> <tr> <td class="scroll-td-text">近期td> <td class="scroll-td-text">疫情鍛煉td> <td class="scroll-td-text">td> <td class="scroll-td-text">高考完剃毛td> <td class="scroll-td-text">畢業(yè)聚餐td> <td class="scroll-td-text">陰間萬(wàn)圣節(jié)特效td> <td class="scroll-td-text">躺平td> <td class="scroll-td-text">軍訓(xùn)期td> tr> table> marquee> div> div> <footer> <div id="footer"> <a style="color: #fff;">個(gè)人版權(quán)a> <p>p> div> footer> body> html>

    學(xué)的反而越迷茫

    有這種感覺(jué)很正常,因?yàn)槟氵€沒(méi)有真正去公司里面待過(guò),也不清楚自己到底要學(xué)多少東西才能勝任公司里面給你分配的活。我從你的表述來(lái)看,你的基礎(chǔ)應(yīng)該還是很扎實(shí)的。跟著網(wǎng)上那種全套的視頻教程學(xué)肯定沒(méi)有問(wèn)題。

    當(dāng)你以后真正進(jìn)入公司,發(fā)現(xiàn)工作的難度和量大約只有你學(xué)習(xí)時(shí)期的大約20%用dw制作最簡(jiǎn)單網(wǎng)頁(yè),你可能就會(huì)發(fā)出一聲嘆息:原來(lái)工作也不過(guò)如此嘛。

    這是很正常的,因?yàn)榇蟛糠止臼钦心氵M(jìn)去去干活的,寫業(yè)務(wù)的,不是讓你一個(gè)新人去研發(fā)公司架構(gòu)的。都是現(xiàn)成的東西,你要做的就是在別人的教導(dǎo)下,手把手的指揮下去添磚加瓦。到時(shí)候你恐怕要驚呼:就這?

    所以,放松心態(tài)吧,好好享受大學(xué)時(shí)光 —————————————————

    學(xué)習(xí)更多

    關(guān)注我 | 點(diǎn)贊博文 | 每天帶你漲知識(shí)

網(wǎng)站首頁(yè)   |    關(guān)于我們   |    公司新聞   |    產(chǎn)品方案   |    用戶案例   |    售后服務(wù)   |    合作伙伴   |    人才招聘   |   

友情鏈接: 餐飲加盟

地址:北京市海淀區(qū)    電話:010-     郵箱:@126.com

備案號(hào):冀ICP備2024067069號(hào)-3 北京科技有限公司版權(quán)所有