制作一个致敬页(Build a Tribute Page)


响应式网页设计项目1

1. 原画

https://codepen.io/freeCodeCamp/full/zNqgVx

2. 实战

https://codepen.io/Neos15/pen/Vwrbayb
https://codepen.io/Neos15/pen/oNoWrNw

3. 代码1.0

3.1 HTML


    

Dr. Norman Borlaug

The man who saved a billion lives

Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.

Here's a time line of Dr. Borlaug's life:

  • 1914 - Born in Cresco, Iowa
  • 1933 - Born in Cresco, Iowa
  • 1935 - Born in Cresco, Iowa
  • 1937 - Born in Cresco, Iowa
  • 1941 - Born in Cresco, Iowa
  • 1942 - Born in Cresco, Iowa
  • 1944 - Born in Cresco, Iowa
  • 1945 - Born in Cresco, Iowa
  • 1953 - Born in Cresco, Iowa
  • 1962 - Born in Cresco, Iowa
  • 1970 - Born in Cresco, Iowa
  • 1983 - Born in Cresco, Iowa
  • 1984 - Born in Cresco, Iowa
  • 2005 - Born in Cresco, Iowa
  • 2009 - Born in Cresco, Iowa

"Borlaug's life and achievement are testimony to the far-reaching contribution that one man's towering intellect, persistence and scientific vision can make to human peace and progress."

-- Indian Prime Minister Manmohan Singh

If you have time, you should read more about this incredible human being on his Wikipedia entry.

3.2 css

main {
  background-color: #f2f2f2;
}
#title,h2 {
  text-align: center;
  padding-top: 25px;
}
#img-div {
  background-color: white;
  width:96%;
  margin: auto;
}
#image,#img-caption {
  display: block;
  max-width: 1024px;
  width:96%;
  margin: auto;
  text-align: center;
}
#tribute-info {
  margin: auto;
}
ul {
  width: 40%;
  margin: auto;
  padding:auto;
}
span {
  font-weight: bold;
}

4.代码2.0

4.1 HTML


    

Dr. Norman Borlaug

The man who saved a billion lives

Dr. Norman Borlaug seen standing in Mexican wheat field with a group of biologists
Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.

Here's a time line of Dr. Borlaug's life:

  • 1914 - Born in Cresco, Iowa
  • 1933 - Born in Cresco, Iowa
  • 1935 - Born in Cresco, Iowa
  • 1937 - Born in Cresco, Iowa
  • 1941 - Born in Cresco, Iowa
  • 1942 - Born in Cresco, Iowa
  • 1944 - Born in Cresco, Iowa
  • 1945 - Born in Cresco, Iowa
  • 1953 - Born in Cresco, Iowa
  • 1962 - Born in Cresco, Iowa
  • 1970 - Born in Cresco, Iowa
  • 1983 - Born in Cresco, Iowa
  • 1984 - Born in Cresco, Iowa
  • 2005 - Born in Cresco, Iowa
  • 2009 - Born in Cresco, Iowa

"Borlaug's life and achievement are testimony to the far-reaching contribution that one man's towering intellect, persistence and scientific vision can make to human peace and progress."

-- Indian Prime Minister Manmohan Singh

If you have time, you should read more about this incredible human being on his Wikipedia entry.

4.2 CSS

html {
  font-size:10px;
}
body {
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
        'Helvetica Neue', Arial, sans-serif;
  font-size:1.6rem;
  line-height:1.5;
  text-align:center;
  color:#333;
  margin:0;
}
#main {
  margin: 30px 8px;
  padding: 15px;
  border-radius: 5px;
  background: #eee;
}
@madia (max-width:460px) {
  #main {
    margin:0;
  }
}
h1 {
  font-size: 4rem;
  margin-bottom:0;
}
@madia (max-width:460px) {
  h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}
a {
  color: #477ca7;
}
a:visited {
  color: #74638f;
}
img {
  max-width: 100%;
  display:block;
  height: auto;
  margin:0 auto;
}
#img-div {
  background-color: white;
  padding: 10px;
  margin: 0;
}
#img-caption {
  margin: 15px 0 5px 0;
}
@madia (max-width: 460px) {
  #img-caption {
    font-size: 1.4rem;
  }
}
#headline {
  margin: 50px 0;
  text-align: center;
}
ul {
  max-width:550px;
  margin: 0 auto 50px auto;
  text-align:left;
  line-height: 1.6;
}
li {
  margin: 16px 0;
}
span {
  font-weight: bold;
}
blockquote {
  font-style: italic;
  max-width:545px;
  margin: 0 auto 50px auto;
  text-align: left;
}