A small case of HTML5 web design: the design of the recruitment notice webpage of Yixianyuan Tea House

Foreword:

The design of the recruitment notice webpage of Yixianyuan Teahouse shared today is the first blog in this column, and it is also a small practical case written by me after studying knowledge points for several hours. I have an idea, I want to use Yixianyuan Tea House as an inspiration to continuously optimize and improve the code and ideas to design a set of exquisite web pages related to tea

The full code of the HTML design of the recruitment notice webpage of Yixianyuan Teahouse is as follows:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<link rel="stylesheet" type="text/css" href="222.css"/>
	</head>
	<body>
		<hr />
		<h1 id="b">帝豪集团股份责任有限公司</h1>
		      <h2 class="w">逸仙园茶馆招聘启事</h2>
		      <hr />
		      <!-- <hr />标签的显示效果是一个横线,用来区分网页的不同板块-->
		 <h2>招聘岗位</h2>
		 <p>茶艺师10名:性别不限,年龄20至30</p>
		 <h3>岗位要求</h3>
		 <p>熟悉我国6大茶系,善于鉴别各种茶叶,熟练掌握各种茶叶的泡法</p>
		 <p>工作细心认真</p>
		  <h3>工资待遇</h3>
		  <p>6险1金,8千一月</p>
		  <p>上三休一,法定节假日轮休,团建</p>
		  <h3>服装要求</h3>
		  <p>女性茶艺师需汉服,男性茶艺师需唐装,集团统一发放</p>
		  <h3>工作地点</h3>
		  <p>北京市朝阳区三里屯xxx号</p>
		  <p>联系电话:12344556762</p>
		  <img src="images/北京.png" alt="" />
	</body>
</html>

 The full CSS codes of the design webpage of Yixianyuan Teahouse Recruitment Notice are as follows:

#b{
	text-align: center;
    font-family: "微软雅黑";
    color: #FF0000;
}
.w{
	text-align: center;
	font-family: "微软雅黑";

}

 The design picture of the recruitment notice webpage of Yixianyuan Teahouse is as follows:

 

 

おすすめ

転載: blog.csdn.net/weixin_63279307/article/details/131535530