{"id":9937,"date":"2024-03-04T10:30:00","date_gmt":"2024-03-04T10:30:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9937"},"modified":"2024-03-04T08:31:01","modified_gmt":"2024-03-04T03:31:01","slug":"team-page-template-in-html-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/","title":{"rendered":"Team Page Template in HTML CSS"},"content":{"rendered":"<p>This HTML and CSS template helps you to create a stylish team page on your website. It displays team members&#8217; details in <a href=\"https:\/\/www.codepel.com\/cards\/css-cards-with-images\/\" target=\"_blank\" rel=\"noopener\">cards with images<\/a>, names, and roles. The HTML structures the <a href=\"https:\/\/codehim.com\/layout\/animated-curved-header-using-svg-and-css\/\" target=\"_blank\" rel=\"noopener\">page with header<\/a> content introducing the company and a section displaying team members.<\/p>\n<p>This code is perfect for company websites needing a polished team page. It&#8217;s versatile and easy to customize for various businesses. It offers a clean layout to spotlight team members attractively.<\/p>\n<h2>How to Create Team Page Template In HTML CSS<\/h2>\n<p>1. First of all, create the HTML structure for the team page as follows. Replace the sample names, positions, and images with your team members&#8217; details. Ensure each member has a unique <code>\"card\"<\/code> section.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"circle-top\"&gt;&lt;\/div&gt;\r\n&lt;div class=\"circle-bottom\"&gt;&lt;\/div&gt;\r\n&lt;header&gt;\r\n  &lt;div class=\"header-content\"&gt;\r\n    &lt;span&gt;company management&lt;\/span&gt;\r\n    &lt;h1&gt;Meet a team of experts and innovators who are pioneers in their field&lt;\/h1&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/header&gt;\r\n&lt;section&gt;\r\n  &lt;div class=\"card-top\"&gt;\r\n    &lt;div class=\"card\"&gt;\r\n      &lt;img src=\"https:\/\/images.pexels.com\/photos\/2811089\/pexels-photo-2811089.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=11\" alt=\"Alexandra Smith\"&gt;\r\n      &lt;h2&gt;Alexandra Smith&lt;\/h2&gt;\r\n      &lt;p&gt;Founder and Chief Operations Officer&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div class=\"card\"&gt;\r\n      &lt;img src=\"https:\/\/images.pexels.com\/photos\/91227\/pexels-photo-91227.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"John Smith\"&gt;\r\n      &lt;h2&gt;John Smith&lt;\/h2&gt;\r\n      &lt;p&gt;Founder and Chief Executive Officer&lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/2379005\/pexels-photo-2379005.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"Erik Longman\"&gt;\r\n    &lt;h2&gt;Erik Longman&lt;\/h2&gt;\r\n    &lt;p&gt;Chief Process and Innovation Officer&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/2216607\/pexels-photo-2216607.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"Matthew Foster\"&gt;\r\n    &lt;h2&gt;Matthew Foster&lt;\/h2&gt;\r\n    &lt;p&gt;Chief Sales Officer&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/1043473\/pexels-photo-1043473.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"Artur Dichter\"&gt;\r\n    &lt;h2&gt;Artur Dichter&lt;\/h2&gt;\r\n    &lt;p&gt;Chief Financial Officer&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/614810\/pexels-photo-614810.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"Oliver Rohlsson\"&gt;\r\n    &lt;h2&gt;Oliver Rohlsson&lt;\/h2&gt;\r\n    &lt;p&gt;Chief Technical Officer&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/262391\/pexels-photo-262391.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"James Hedge\"&gt;\r\n    &lt;h2&gt;James Hedge&lt;\/h2&gt;\r\n    &lt;p&gt;Chief Legal Officer&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"card\"&gt;\r\n    &lt;img src=\"https:\/\/images.pexels.com\/photos\/1181690\/pexels-photo-1181690.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1260&amp;h=750&amp;dpr=1\" alt=\"Eve Johnsson\"&gt;\r\n    &lt;h2&gt;Eve Johnsson&lt;\/h2&gt;\r\n    &lt;p&gt;HR Manager&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/section&gt;\r\n<\/pre>\n<p>2. Now, style the team page using the following CSS styles. Adjust colors, fonts, or sizes to match your website&#8217;s theme. Be cautious not to alter the structure unless you&#8217;re familiar with CSS.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(\"https:\/\/fonts.googleapis.com\/css2?family=Nunito:wght@400;700&amp;display=swap\");\r\n* {\r\n  margin: 0;\r\n  padding: 0;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  min-height: 100vh;\r\n  min-height: 100svh;\r\n  background: #1f2c3a !important;\r\n  font-family: \"Nunito\", sans-serif;\r\n  position: relative;\r\n  overflow-x: hidden;\r\n}\r\n\r\nimg {\r\n  border-radius: 50%;\r\n  width: clamp(100px, 40vw, 120px);\r\n  height: clamp(100px, 40vw, 120px);\r\n  object-fit: cover;\r\n  object-position: top;\r\n}\r\n\r\n.circle-top {\r\n  width: clamp(25rem, 30vw, 31.25rem);\r\n  position: absolute;\r\n  top: 3em;\r\n  left: -8em;\r\n  height: clamp(25rem, 30vw, 31.25rem);\r\n  background: #00458f;\r\n  background: radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);\r\n  background: -moz-radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);\r\n  background: -webkit-radial-radial-gradient(circle, #00458f8f 0%, #00458e00 60%, #ffffff00 100%);\r\n  border-radius: 50%;\r\n}\r\n\r\n.circle-bottom {\r\n  width: clamp(25rem, 30vw, 31.25rem);\r\n  position: absolute;\r\n  bottom: -5em;\r\n  right: -8em;\r\n  height: clamp(25rem, 30vw, 31.25rem);\r\n  background: #00458f;\r\n  background: radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);\r\n  background: -moz-radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);\r\n  background: -webkit-radial-radial-gradient(circle, #00458f8f 0%, #00458e00 65%, #ffffff00 100%);\r\n  border-radius: 50%;\r\n}\r\n\r\nheader {\r\n  background: linear-gradient(to top, #1f2c3a 0%, #2f3c4742 100%), url(\"https:\/\/images.unsplash.com\/photo-1529156069898-49953e39b3ac?q=80&amp;w=1932&amp;auto=format&amp;fit=crop&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D\") no-repeat 50% 50%\/cover;\r\n  width: 100%;\r\n  min-height: 25em;\r\n  display: flex;\r\n  flex-direction: column;\r\n  justify-content: center;\r\n  align-items: center;\r\n  text-align: center;\r\n  color: #fff;\r\n}\r\nheader .header-content {\r\n  width: min(37.5em, 90%);\r\n  margin-top: 5em;\r\n  position: relative;\r\n  z-index: 10;\r\n}\r\nheader .header-content span {\r\n  display: inline-block;\r\n  text-transform: uppercase;\r\n  letter-spacing: 0.063rem;\r\n  font-size: clamp(0.8rem, 0.7625rem + 0.1875vw, 0.95rem);\r\n}\r\nheader .header-content h1 {\r\n  font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2rem);\r\n  font-weight: 700;\r\n}\r\n\r\nsection {\r\n  display: flex;\r\n  justify-content: center;\r\n  flex-wrap: wrap;\r\n  max-width: 75em;\r\n  margin-inline: auto;\r\n  gap: 0.938rem;\r\n  transform: translatey(-3em);\r\n  position: relative;\r\n  z-index: 10;\r\n}\r\nsection .card {\r\n  padding: 1.875em 1.25em;\r\n  max-width: 18.75rem;\r\n  width: 90%;\r\n  height: 16.875rem;\r\n  display: grid;\r\n  place-content: center;\r\n  place-items: center;\r\n  text-align: center;\r\n  position: relative;\r\n}\r\nsection .card::before {\r\n  position: absolute;\r\n  content: \"\";\r\n  top: 0;\r\n  left: 0;\r\n  width: 100%;\r\n  height: 100%;\r\n  border-radius: 1rem;\r\n  z-index: -1;\r\n  border: 0.125rem solid transparent;\r\n  background: linear-gradient(45deg, #1e272e, #48627a) border-box;\r\n  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);\r\n  -webkit-mask-composite: destination-out;\r\n  mask-composite: exclude;\r\n}\r\nsection .card h2 {\r\n  color: #fff;\r\n  letter-spacing: 0.05rem;\r\n  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem);\r\n  margin-top: 0.625em;\r\n  margin-bottom: 0.188em;\r\n}\r\nsection .card p {\r\n  color: #afafaf;\r\n  font-size: clamp(0.8rem, 0.7625rem + 0.1875vw, 0.95rem);\r\n}\r\nsection .card-top {\r\n  flex-basis: 100%;\r\n  display: flex;\r\n  justify-content: center;\r\n  gap: 0.938rem;\r\n  flex-wrap: wrap;\r\n}\r\nsection .card-top .card img {\r\n  width: clamp(120px, 40vw, 150px);\r\n  height: clamp(120px, 40vw, 150px);\r\n}<\/pre>\n<p>Feel free to experiment and personalize the template according to your specific needs and preferences. You can customize the card dimensions and page&#8217;s background according to your needs.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully integrated this team page template into your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This HTML and CSS template helps you to create a stylish team page on your website. It displays team members&#8217;&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9939,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-9937","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Team Page Template in HTML CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Team Page Template in HTML CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-04T10:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Team Page Template in HTML CSS\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\"},\"wordCount\":214,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\",\"name\":\"Team Page Template in HTML CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png\",\"datePublished\":\"2024-03-04T10:30:00+00:00\",\"description\":\"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Team Page Template in HTML CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 &amp; CSS3\",\"item\":\"https:\/\/codehim.com\/category\/html5-css3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Team Page Template in HTML CSS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Team Page Template in HTML CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/","og_locale":"en_US","og_type":"article","og_title":"Team Page Template in HTML CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-03-04T10:30:00+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Team Page Template in HTML CSS","datePublished":"2024-03-04T10:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/"},"wordCount":214,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/","url":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/","name":"Team Page Template in HTML CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png","datePublished":"2024-03-04T10:30:00+00:00","description":"Here is a free code snippet to create a Team Page Template in HTML CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Team-Page-Template-in-HTML-CSS.png","width":1280,"height":960,"caption":"Team Page Template in HTML CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/team-page-template-in-html-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"HTML5 &amp; CSS3","item":"https:\/\/codehim.com\/category\/html5-css3\/"},{"@type":"ListItem","position":3,"name":"Team Page Template in HTML CSS"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":5241,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9937","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=9937"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9937\/revisions"}],"predecessor-version":[{"id":11309,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9937\/revisions\/11309"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9939"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9937"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9937"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9937"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}