iT邦幫忙

2022 iThome 鐵人賽

DAY 27
0
自我挑戰組

網頁前端設計系列 第 27

Day27-開始設計一個自己的網站-個人履歷

  • 分享至 

  • xImage
  •  

今天我們來接著繼續設計一個自己的網站吧~
(๑•̀ㅂ•́)و✧

最常見的個人網站通常都會有介紹自己的個人履歷,那麼我們就來設計一個個人履歷的雛型吧~

  • 首先,一樣在專案資料夾裡新增一個resume.html檔案
    https://ithelp.ithome.com.tw/upload/images/20220927/2015199237ABVeKUWp.png

  • 這個頁面將會由點選選單欄進入

  • 一開始的標頭部分也都跟首頁一模一樣,我們可以直接複製貼上
    https://ithelp.ithome.com.tw/upload/images/20220927/20151992h3n963CyUX.png

  • 其中選單欄的部分這頁的連結改為這個檔案,以「#」為當前頁面,其他連結改為其他的檔案
    https://ithelp.ithome.com.tw/upload/images/20220927/20151992rm1wCWqvBy.png

  • 而其他檔案的選單欄也要改,兩個頁面才會互通
    https://ithelp.ithome.com.tw/upload/images/20220927/20151992UAPVIABnBA.png
    https://ithelp.ithome.com.tw/upload/images/20220927/20151992HffqYm1a4Z.png

  • <main>裡加一個<section><table>

  • 開始設計CSS,先設定邊距

main section.table {
    padding: 2rem;
}

https://ithelp.ithome.com.tw/upload/images/20220927/2015199261DDe6JMzc.png

  • 先把表格設為邊框合併為單一邊框,比較簡潔好看
main section.table table {
    border-collapse: collapse;
}

https://ithelp.ithome.com.tw/upload/images/20220927/201519921Gh6P1NgPX.png

  • 再將線的上和下部分設定一個顏色,合併的線可以分成上下左右
main section.table table tr {
    border-top: 1px solid blueviolet;
    border-bottom: 1px solid blueviolet;
}

https://ithelp.ithome.com.tw/upload/images/20220927/20151992yZ2l6NqVLG.png

  • 設定欄位邊距
main section.table table tr td {
    padding: 1rem;
}

https://ithelp.ithome.com.tw/upload/images/20220927/20151992GdqaTaLsDr.png

  • 還可以設定游標滑鼠滑過欄位上方後的背景顏色
main section.table table tr:hover {
    background-color: violet;
}

https://ithelp.ithome.com.tw/upload/images/20220927/201519926fE7pzK49R.png
https://ithelp.ithome.com.tw/upload/images/20220927/20151992XG6CPXeun3.png


一個簡單的網頁個人履歷雛形就完成啦~


上一篇
Day26-開始設計一個自己的網站-聯絡表單
下一篇
Day28-開始設計一個自己的網站-首頁
系列文
網頁前端設計30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言