• HTML5期末考核大作业,电影网站——橙色国外电影 web期末作业设计网页


    HTML实例网页代码, 本实例适合于初学HTML的同学。该实例里面有设置了css的样式设置,有div的样式格局,这个实例比较全面,有助于同学的学习,本文将介绍如何通过从头开始设计个人网站并将其转换为代码的过程来实践设计。

    一、网页介绍

    1 网页简介:此作品为学生个人主页网页设计题材,HTML+CSS 布局制作,web前端期末大作业,大学生网页设计作业源码,这是一个不错的网页制作,画面精明,代码为简单学生水平, 非常适合初学者学习使用。

    2.网页编辑:网页作品代码简单,可使用任意HTML编辑软件(如:Dreamweaver、HBuilder、Vscode 、Sublime 、Webstorm、Text 、Notepad++ 等任意html编辑软件进行运行及修改编辑等操作)。

    3.知识应用:技术方面主要应用了网页知识中的: Div+CSS、鼠标滑过特效、Table、导航栏效果、Banner、表单、二级三级页面等,视频、 音频元素 、Flash,同时设计了Logo(源文件)所需的知识点。


    一、网页效果

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    二、代码展示

    1.HTML代码

    代码如下(示例):以下仅展示部分代码供参考~

    
    DOCTYPE html>
    <html lang="en">
    <head>
    <title>Hometitle>
    
    <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="" />
    <script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false);
    		function hideURLbar(){ window.scrollTo(0,1); } script>
    
    <link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
    <link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
    <link rel="stylesheet" href="css/contactstyle.css" type="text/css" media="all" />
    <link rel="stylesheet" href="css/faqstyle.css" type="text/css" media="all" />
    <link href="css/single.css" rel='stylesheet' type='text/css' />
    <link href="css/medile.css" rel='stylesheet' type='text/css' />
    
    <link href="css/jquery.slidey.min.css" rel="stylesheet">
    
    
    <link href="css/popuo-box.css" rel="stylesheet" type="text/css" media="all" />
    
    
    <link rel="stylesheet" href="css/font-awesome.min.css" />
    
    
    <script type="text/javascript" src="js/jquery-2.1.4.min.js">script>
    
    
    <link href="css/owl.carousel.css" rel="stylesheet" type="text/css" media="all">
    <script src="js/owl.carousel.js">script>
    <script>
    	$(document).ready(function() { 
    		$("#owl-demo").owlCarousel({
    	 
    		  autoPlay: 3000, //Set AutoPlay to 3 seconds
    	 
    		  items : 5,
    		  itemsDesktop : [640,4],
    		  itemsDesktopSmall : [414,3]
    	 
    		});
    	 
    	}); 
    script> 
    
    
    
    <script type="text/javascript" src="js/move-top.js">script>
    <script type="text/javascript" src="js/easing.js">script>
    <script type="text/javascript">
    	jQuery(document).ready(function($) {
    		$(".scroll").click(function(event){		
    			event.preventDefault();
    			$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
    		});
    	});
    script>
    
    head>
    	
    <body>
    
    	<div class="header">
    		<div class="container">
    			<div class="w3layouts_logo">
    				<a href="index.html"><h1>One<span>Moviesspan>h1>a>
    			div>
    			<div class="w3_search">
    				<form action="#" method="post">
    					<input type="text" name="Search" placeholder="Search" required="">
    					<input type="submit" value="Go">
    				form>
    			div>
    			<div class="w3l_sign_in_register">
    				<ul>
    					<li><i class="fa fa-phone" aria-hidden="true">i> (+000) 123 345 653li>
    					<li><a href="#" data-toggle="modal" data-target="#myModal">Logina>li>
    				ul>
    			div>
    			<div class="clearfix"> div>
    		div>
    	div>
    
    										<div class="clearfix">div>
    									div>
    								div>
    								<div class="ribben">
    									<p>NEWp>
    								div>
    							div>
    							<div class="col-md-2 w3l-movie-gride-agile">
    								<a href="single.html" class="hvr-shutter-out-horizontal"><img src="images/m1.jpg" title="album-name" class="img-responsive" alt=" " />
    									<div class="w3l-action-icon"><i class="fa fa-play-circle" aria-hidden="true">i>div>
    								a>
    								<div class="mid-1 agileits_w3layouts_mid_1_home">
    									<div class="w3l-movie-text">
    										<h6><a href="single.html">War Dogsa>h6>							
    									div>
    									<div class="mid-2 agile_mid_2_home">
    										<p>2016p>
    										<div class="block-stars">
    											<ul class="w3l-ratings">
    												<li><a href="#"><i class="fa fa-star" aria-hidden="true">i>a>li>
    												<li><a href="#"><i class="fa fa-star" aria-hidden="true">i>a>li>
    												<li><a href="#"><i class="fa fa-star" aria-hidden="true">i>a>li>
    												<li><a href="#"><i class="fa fa-star-half-o" aria-hidden="true">i>a>li>
    												<li><a href="#"><i class="fa fa-star-o" aria-hidden="true">i>a>li>
    											ul>
    										div>
    										<div class="clearfix">div>
    									div>
    								div>
    								<div class="ribben">
    
    body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120

    2.CSS代码

    html, body{
        font-size: 100%;
    	font-family: 'Roboto Condensed', sans-serif;
    	background:#ffffff;
    }
    ul li,ol li{
    	font-size:14px;
    }
    p{
    	margin:0;
    	font-size:0.9em;
    }
    h1,h2,h3,h4,h5,h6,a{
    	font-family: 'Roboto Condensed', sans-serif;
    	margin:0;
    }
    ul,label{
    	margin:0;
    	padding:0;
    }
    body a:hover{
    	text-decoration:none;
    }
    
    .general,.Latest-tv-series,.faq{
        padding: 3em 0;
    }
    .w3_latest_text {
        margin-left: 3em;
    }
    /*-- //general --*/
    /*-- Latest-tv-series --*/
    .agile_tv_series_grid_left {
        padding: 0;
    }
    a.w3_play_icon span,a.w3_play_icon1 span,a.w3_play_icon2 span {
        position: absolute;
        color: #fff;
        font-size:4.5em;
        left: 42%;
        top: 36%;
    }
    .agile_tv_series_grid_right{
    	background:#FF8D1B;
    	min-height:312px;
    	padding:3em 3em 0;
    	width: 48.6%;
    }
    p.fexi_header{
    	text-transform: uppercase;
        font-size: 1.3em;
        color: #212121;
        font-weight: bold;
        padding-bottom: 1em;
    }
    p.fexi_header_para{
    	margin-top:.8em;
    	color:#fff;
    	line-height:1.5em;
    	position:relative;
    }
    p.fexi_header_para label{
    	position: absolute;
        top: 0%;
        left: 21%;
        font-style: normal;
    }
    
    }
    .form-module .form:nth-child(2) {
      display: block;
    }
    .form-module h3 {
        margin: 0 0 1.5em;
        color: #212121;
        font-size: 1.2em;
        font-weight: 400;
     span, a.w3_play_icon2 span {
    		font-size: 2em;
    	}
    	p.fexi_header {
    		font-size: 1em;
    	}
    	.agile_tv_series_grid_right {
    		padding: 2em 1em;
    	}
    	p.fexi_header_para {
    		font-size: 13px;
    	}
    	.conjuring_w3 {
    		height: 110px;
    	}
    	.w3ls_footer_grid_right {
    		width: 55%;
    	}
    	p,.w3ls_footer_grid1_right ul li,.panel-body{
    		font-size: 13px;
    	}
    	.w3ls_footer_grid_left1 h2 {
    		font-size: 1.3em;
    	}
    	h3.head {
    		font-size: 1.8em;
    	}
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107

    三、个人总结

    一套合格的网页应该包含(具体可根据个人要求而定)

    1. 页面分为页头、菜单导航栏(最好可下拉)、中间内容板块、页脚四大部分;
    2. 所有页面相互超链接,可到三级页面,有5-10个页面组成;
    3. 页面样式风格统一布局显示正常,不错乱,使用Div+Css技术;
    4. 菜单美观、醒目,二级菜单可正常弹出与跳转;
    5. 要有JS特效,如定时切换和手动切换图片新闻;
    6. 页面中有多媒体元素,如gif、视频、音乐,表单技术的使用;
    7. 页面清爽、美观、大方,不雷同。
    8. 网站前端程序不仅要能够把用户要求的内容呈现出来,还要满足布局良好、界面美观、配色优雅、表现形式多样等要求。

    四、精彩推荐

    1.看到这里了就 【点赞收藏博文】 三连支持下吧,你的支持是我创作的动力, 【观注作者 |获取更多源码| 优质文章】

    2.关注我带您学习各种前端插件、3D炫酷效果、图片展示、文字效果、以及整站模板 、大学生毕业HTML模板 、期末大作业模板 、等! 「在这里有好多 前端 开发者,一起探讨 前端 Node 知识,互相学习」!

    3.以上内容技术相关问题可以相互学习交流

    在这里插入图片描述

  • 相关阅读:
    2023秋招--游族--游戏客户端--HR面面经
    k8s-实战——yapi平台部署
    【数据结构】斐波那契数列优化
    JAVA PowerMock 单元测试
    亚马逊云科技的AI新引擎,如何助力企业应对“乌卡时代”?
    Qt,C++中QString,string,char数组等常用格式转换大总结
    跬智信息(Kyligence)成为信创工委会技术活动单位
    双靶向融合蛋白标记的红细胞膜包裹PLGA微球/细胞膜拮抗联合纳米酶的仿生制备
    Unity团结引擎使用总结
    git 恢复本地未提交的文件 local history
  • 原文地址:https://blog.csdn.net/qq_38513433/article/details/128181827