Thread: Requesting Opinion

Results 1 to 3 of 3
  1. #1 Requesting Opinion 
    Registered Member
    Join Date
    Oct 2017
    Posts
    5
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    Hello everyone I am Jacobs Web so I recently been studying Website Development and would like your opinion On my HTML 5 Work!
    any help or tips/tricks for helping me learn would be appreciated.

    Code:
    <!DOCTYPE html>
    	
    <html>
    	<head>
    
    <title> Jacobs Web Training Website </title>
    
    </head>
    
    <body>
    	
    
    <h1> Heading 1 </h1>
    <h2> Heading 2 </h2>
    <h3> Heading 3 </h3>
    <h4> Heading 4 </h4>
    <h5> Heading 5 </h5>
    <h6> Heading 6 </h6>
    
    <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p>
    <table>
    	<thead>
    		<tr>
    			<th> Name </th>
    			<th> Email </th>
    			<th> Age </th>
    		</tr>
    	</thead>
    	<tbody>
    		<tr>
    			<td>Alex Con</td>
    			<td>[email protected]</td>
    			<td>20</td>
    		</tr>
    	</tbody>
    </table>
    
    <br>
    <hr>
    
    </body>
    <div>
    	<form action="process.php" mehod="post">
    		</div>
    	<br>
    	<div>
    		<label>First Name</label>
    		<input type="text" name="first-name">
    			</div>
    	<br>
    	<div>
    		<label> Last Name </label>
    		<input type="text" name="last-name">
    	</div>
    	Blockquote
    
    </html>
    Code:
    <!DOCTYPE html>
    <html>
    <head>
    	<title>My Blog</title>
    </head>
    <body>
    <header>
    	<h1>My Website</h1>
    </header>
    
    <section>
    	<article>
    		<h3>Blog Post One</h3>
    		<small>Posted by Jacob WebServices</small>
    	</article>
    	<p class="post">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    	tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    	quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    	consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    	cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    	proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
    	<a href="post.html"> Read More</a>
    </section>
    <aside>
    	<h3>Catagorey</h3>
    	<ul>
    		<nav>
    		<LI><a href="#">Catagorey 1</a></LI>
    		</nav>
    	</ul>
    	<footer>
    		<p>Copyright &copy; 2017 Jacob WebServices</p>
    	</footer>
    </aside>
    </body>
    </html>
    Reply With Quote  
     

  2. #2  
    Old Webdeveloper
    Dondxon's Avatar
    Join Date
    Aug 2011
    Posts
    1,144
    Thanks given
    209
    Thanks received
    108
    Rep Power
    65
    You do realize when you do "enter". It doesn't go to a new line? All of that text will follow in one big line.
    You could use <br> instead.
    I was just wondering, nice work though.
    Do you need any PHP work done? Or are you looking for RSPS integrations? click herel.

    Vouches

    Reply With Quote  
     

  3. #3  
    Registered Member

    Join Date
    May 2016
    Age
    26
    Posts
    281
    Thanks given
    162
    Thanks received
    64
    Rep Power
    96
    Quote Originally Posted by Dondxon View Post
    You do realize when you do "enter". It doesn't go to a new line? All of that text will follow in one big line.
    You could use <br> instead.
    I was just wondering, nice work though.
    There's a CSS property for that.
    Code:
    white-space: pre-wrap;
    But other than that I still format my text inline with the HTML tags for readability which could also be his reasoning for doing so.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Requesting opinions on sources
    By Rememberm3 in forum Requests
    Replies: 15
    Last Post: 05-06-2016, 11:29 PM
  2. Requesting a very hard (in my opinion) Signature
    By White Vans in forum Requests
    Replies: 1
    Last Post: 07-30-2014, 06:20 PM
  3. Requesting your opinion in which forum should i use
    By Rune-Brasil in forum Website Development
    Replies: 12
    Last Post: 07-28-2014, 03:48 AM
  4. Requesting Opinion
    By lipkin in forum Requests
    Replies: 7
    Last Post: 07-22-2013, 09:51 AM
  5. Requesting Opinions On This Kind Of Server
    By .Optimum in forum Requests
    Replies: 1
    Last Post: 11-03-2011, 11:16 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •