HTML,称为超文本标记语言,是用于设计网页和构建内容的最流行的语言之一。 HTML 使用标签、元素、图像和一些最新的组件来使网页更具吸引力和用户友好性。
通过将 HTML 与 CSS 相结合,可以轻松定制网页的外观。 HTML 在正确构建万维网上的网页方面发挥着至关重要的作用。它可以使用简单的文本编辑器进行编辑,允许用户在需要时进行更改。
为了更好地理解,这里是代码:
<!DOCTYPE html> <html> <head> <title>My First Web Page</title> </head> <body> <h1>Unlock the Power of Online Learning</h1> <p>Master 1000+ Tools & Technologies.</p> <img src="C:\Users\Demo2\Desktop\HTML\webimage.PNG"> <ul> <li>Python</li> <li>Artificial Intelligence</li> <li>Java</li> </ul> <a href="https://www.educba.com">View All 1000 Skills</a> </body> </html>
输出:
这里列出了对于 HTML 网页设计至关重要的基本 HTML 标签和元素。
HTML Tag/Element | Purpose | |||||||||||||||||||||||||||||||
to |
Define different levels of headings | |||||||||||||||||||||||||||||||
Define paragraphs of text | ||||||||||||||||||||||||||||||||
Create line breaks | ||||||||||||||||||||||||||||||||
Create an ordered list | ||||||||||||||||||||||||||||||||
Create an unordered list | ||||||||||||||||||||||||||||||||
Define items within a list | ||||||||||||||||||||||||||||||||
Create hyperlinks | ||||||||||||||||||||||||||||||||
Insert images | ||||||||||||||||||||||||||||||||
Examples of Design Web Pages in HTMLLet’s create some web pages to see the resultant web page. Example #1: Travel WebpageHere, we will create an amazing travel webpage showcasing places to visit in Switzerland. We will set one background image and add some text using HTML Code and Styling. HTML Code: <head> <style> .card { max-width: 380px; margin: auto; text-align: center; } #main { background-image: url('switzerland.jpg'); background-repeat: no-repeat; background-size: cover; } .price { color: #f1294a; font-size: 18px; } .card button { padding: 10px; color: white; background-color: #f1294a; text-align: center; } </style> </head> <body id="main"> <h2 style="text-align:center">Places to Visit in Switzerland</h2> <div class="card"> <h1><b>Explore Switzerland</b></h1> <h3 class="price">Starting from CHF 2000</h3> <h2> <ul> <li>Zurich</li> <li>Geneva</li> <li>Lucerne</li> <li>Interlaken</li> <li>Zermatt</li> </ul> </h2> <p><button>Book Here</button></p> </div> </body> 登录后复制 Output: Example #2: Feedback FormWe will build one Feedback form in the form of a web page in this example. <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body { font-family: Arial, sans-serif; } input[type=text], select, textarea { width: 100%; padding: 8px; border: 1px solid #ccc; border-radius: 4px; margin-top: 4px; margin-bottom: 10px; } input[type=submit] { background-color: #4CAF50; color: white; padding: 8px 12px; border: none; border-radius: 4px; cursor: pointer; } .container { width: 80%; max-width: 500px; margin: 0 auto; border-radius: 6px; background-color: #F2F2F2; padding: 20px; } h3 { text-align: center; } label { font-weight: bold; } textarea { resize: vertical; } /* Optional: Add additional styles to make it more visually appealing */ .container { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } input[type=submit]:hover { background-color: #45a049; } </style> </head> <body> <h3>We Value Your Suggestions!</h3> <div class="container"> <form> <label for="fname">First Name</label> <input type="text" id="fname" name="firstname" placeholder="Enter your name"> <label for="lname">Last Name</label> <input type="text" id="lname" name="lastname" placeholder="Enter your last name"> <label for="email">Email</label> <input type="text" id="email" name="email" placeholder="Enter your email here"> <label for="subject">Suggestion</label> <textarea id="subject" name="subject" placeholder="Provide your suggestion" style="height: 100px"></textarea> <input type="submit" value="Submit"> </form> </div> </body> </html> 登录后复制 Output: Example #3: OTT Platform HomepageIn this example, we will create another web page that showcases an amazing homepage for an OTT platform. HTML Code: <!DOCTYPE html> <html> <head> <title>My OTT Platform</title> <style> /* CSS styles for the website */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #000; color: #fff; } header { background-color: #e50914; padding: 20px; text-align: center; } header h1 { margin: 0; font-size: 28px; text-transform: uppercase; color: #fff; } nav { background-color: #000; padding: 10px; text-align: center; } nav a { text-decoration: none; margin: 10px; color: #fff; font-weight: bold; } main { padding: 20px; } footer { background-color: #e50914; padding: 20px; text-align: center; } .video { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; } .video .thumbnail { position: relative; width: 250px; height: 140px; margin: 10px; overflow: hidden; transition: transform 0.3s; background-color: #333; } .video .thumbnail img { width: 100%; height: 100%; object-fit: cover; } .video .thumbnail:hover { transform: scale(1.1); } .video .title { position: absolute; bottom: 0; left: 0; width: 100%; background-color: rgba(0, 0, 0, 0.7); color: #fff; padding: 10px; margin: 0; font-weight: bold; } /* Additional styles for Netflix-like appearance */ header, nav, main, footer { max-width: 1200px; margin: 0 auto; } .video .thumbnail { width: 275px; height: 155px; } .video .title { font-size: 14px; padding: 8px; } </style> </head> <body> <header> <h1>Welcome to My OTT Platform</h1> </header> <nav> <a href="#">Home</a> <a href="#">Movies</a> <a href="#">TV Shows</a> <a href="#">Documentaries</a> <a href="#">My Account</a> </nav> <main> <h2>Trending Now</h2> <div class="video"> <div class="thumbnail"> <img src="video5.jpg" alt="Video 5"> <div class="title">Movie1</div> </div> <div class="thumbnail"> <img src="video6.jpg" alt="Video 6"> <div class="title">Movie2</div> </div> <div class="thumbnail"> <img src="video7.jpg" alt="Video 7"> <div class="title">Movie3</div> </div> </div> <h2>Top 3 Shows</h2> <div class="video"> <div class="thumbnail"> <img src="video8.jpg" alt="Video 8"> <div class="title">Show1</div> </div> <div class="thumbnail"> <img src="video9.jpg" alt="Video 9"> <div class="title">Show2</div> </div> <div class="thumbnail"> <img src="video10.jpg" alt="Video 10"> <div class="title">Show3</div> </div> </div> <h2>International Movies</h2> <div class="video"> <div class="thumbnail"> <img src="video11.jpg" alt="Video 11"> <div class="title">Movie1</div> </div> <div class="thumbnail"> <img src="video12.jpg" alt="Video 12"> <div class="title">Movie2</div> </div> <div class="thumbnail"> <img src="video13.jpg" alt="Video 13"> <div class="title">Movie3</div> </div> </div> </main> <footer> <p>© 2023 My OTT Platform. All rights reserved.</p> </footer> </body> </html> 登录后复制 Output: Example #4 Newsletter Subscription PageIn this example, let’s create a simple subscription page where users can subscribe to a newsletter. <form action="newsletter.php" method="post" style="background-color: #f2f2f2; padding: 20px; border-radius: 10px;"> <h2 style="color: #333;">Join our Newsletter!</h2> <div class="form-group"> <label for="name" style="color: #333;">Name:</label> <input type="text" id="name" name="name" placeholder="Enter your name" required style="padding: 5px; border: 1px solid #ccc; border-radius: 5px;"> </div> <div class="form-group"> <label for="email" style="color: #333;">Email:</label> <input type="email" id="email" name="email" placeholder="Enter your email" required style="padding: 5px; border: 1px solid #ccc; border-radius: 5px;"> </div> <div class="form-group"> <label for="interests" style="color: #333;">Interests:</label> <select id="interests" name="interests" multiple style="padding: 5px; border: 1px solid #ccc; border-radius: 5px;"> <option value="technology">Technology</option> <option value="fashion">Fashion</option> <option value="food">Food</option> <option value="travel">Travel</option> <option value="sports">Sports</option> </select> </div> <button type="submit" style="background-color: #04aa6d; color: #fff; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer;">Subscribe Now!</button> </form> 登录后复制 Output: Example #5: Guess the Number GameIn this instance, we will design a simple game where users have to guess the number generated by the system. <!DOCTYPE html> <html> <head> <title>Guessing Game</title> <style> body { text-align: center; padding-top: 100px; font-family: Arial, sans-serif; background-color: #f2f2f2; } h1 { color: #333333; } p { color: #666666; } input { padding: 10px; font-size: 16px; border-radius: 4px; border: 1px solid #cccccc; } button { padding: 10px 20px; font-size: 16px; background-color: #4CAF50; color: white; border-radius: 4px; border: none; cursor: pointer; } button:hover { background-color: #45a049; } #result { margin-top: 20px; font-weight: bold; } </style> </head> <body> <h1>Guessing Game</h1> <p>Guess a number between 1 and 10:</p> <input type="number" id="guess" min="1" max="10"> <button onclick="checkGuess()">Submit</button> <p id="result"></p> <script> function checkGuess() { var guess = parseInt(document.getElementById("guess").value); var randomNumber = Math.floor(Math.random() * 10) + 1; if (guess === randomNumber) { document.getElementById("result").innerHTML = "Congratulations! You guessed the correct number."; } else { document.getElementById("result").innerHTML = "Wrong guess. The correct number was " + randomNumber + "."; } } </script> </body> </html> 登录后复制 Output: ConclusionFrom all the above discussion, we can say that Web pages are created by using HTML code in a very simplified manner. Just simply put your HTML code in any one editor, save it with the .html extension, and open it within any browser. 以上是用 HTML 设计网页的详细内容。更多信息请关注PHP中文网其他相关文章! 来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
PX自动转换为REM错误
<style>html { 字体大小:calc(100vw / 3.75); }body { 字体大小:0.16rem; }</s...
来自于 2024-04-16 09:34:16
0
0
4687
页面突然无法拉动 css 或 bootstrap
所以我正在开发一个页面,我昨天做了一部分,效果很好,今天我继续做剩下的部分,一切都很好。当我尝试将其作为普通html页面打开时,CSS或BOOTSTRAP不起作用,仅显示页面文本,...
来自于 2024-04-06 21:58:04
0
1
800
解决CSS中页面底部神秘空白的方法
我正在尝试使用Bootstrap和D3构建一个简单的网页,但我不知道如何消除底部的所有空白。我想摆脱它。我尝试将body和html的min-height设置为100%,但没有任何作...
来自于 2024-04-06 20:22:15
0
1
454
如何在 livewire 惰性占位符中使用 laravel 组件
我想在livewire3占位符内添加我的laravel组件的骨架到目前为止我已经尝试过:通过包含Laravel组件来实现Livewire类:publicfunctionplaceh...
来自于 2024-04-06 20:02:10
0
2
543
用 HTML 代码(从数组生成)替换字符串的顶级方法
给定一个像这样的字符串...$htmlPattern="Usernameis:#name#andusercompanyis#company#";如何将子字符串#...
来自于 2024-04-06 17:40:41
0
2
410
热门教程
更多>
|