๐Ÿ“‚
CS-NoteBook
  • Introduction
  • CS144
    • concise introduction to Internet
      • 1.1 Networked Applications
      • 1.2 The 4 Layer Internet
      • 1.3 IP
      • 1.4 A Day in the Life of a Packet
      • 1.5 Principle: Packet Switching
      • 1.6 Principle:Layering
      • 1.7 Principle: Encapsulation
      • 1.8 Byte order and packet formats
      • 1.9 name and addresses:IPv4
      • 1.10 Longest Prefix Match for Link Layer
      • 1.11 Address Resolution Protocol(ARP)
      • 1.12 Summary
    • Transport Layer
      • 2.1 The TCP Service Model
      • 2.2 UDP service model
      • 2.3 ICMP(Internet Control Message Protocol ไบ’่”็ฝ‘ๆŠฅๆ–‡ๆŽงๅˆถๅ่ฎฎ)
      • 2.4 The End-to-End Principle
      • 2.5 Error Detection:3 schemes (Checksum,CRC and MAC)
      • 2.6 Finite State Machines(ๆœ‰้™็Šถๆ€ๆœบ)
      • 2.7 Flow Control
      • 2.8 Sliding window
      • 2.9 Retransmission Strategies
      • 2.10 TCP Header
      • 2.11 TCP Setup and Teardown
      • 2.12 Recap
    • Package Switching
      • 3.1 The history of Internet
      • 3.2 What is packet switching
      • [3.3 End-to-end delay and Queueing delay
      • 3.4 Playback Buffer(ๅ›žๆ”พ็ผ“ๅญ˜ๅŒบ)
  • CS 61C
    • 1.4 C Memory Mangement, Usage
    • 1.5 Intro to Assembly Language, MIPS Intro
    • 1.5 extra bits operation
  • CS 61B
  • CS 61A
    • Function
    • Names
    • The Art of the Function
    • Control
    • Higher-Order Function
    • Recursive Function
    • List
    • Non-Local Assignment
    • Iterators
    • Objects
    • Data Abstraction
    • OOP
    • Inheritance
    • Representations
    • Decomposition
    • Scheme
    • Exceptions
    • Calculator
    • Interpreters
    • Declarative_Programming
    • Table
    • Aggregation
      • More_recursion
    • Databases
    • Distributed_Data
    • Tail Recursion
    • Exercises
      • lab00
      • lab01
      • hw01
      • tree Recursion example -- give Change
  • The Web DevelopMent Bootcamp
    • html5
    • css
    • bootstrap3
    • bootstrap4
    • javascript expression
    • javascript function
Powered by GitBook
On this page
  • html:5 basic
  • basic tag
  • list
  • div and span
  • link
  • table
  • forms ่กจๅ•
  • input
  • label

Was this helpful?

  1. The Web DevelopMent Bootcamp

html5

html:5 basic

<!DOCTYPE html>
<html>
<head>
    <!-- Our metedata goes here -->
    <title></title>
</head>
<body>
    <!-- Our content goes here -->
</body>
</html>

basic tag

paragraph

<h1></h1>
<h2></h2>
<p></p>

list

<!-- order list -->
<ol>
    <li>A</li>
    <li>B</li>
    <li>C</li>
</ol>

<!--un order list -->
<ul>
    <li>A</li>
    <li>B</li>
    <li>C</li>
</ul>

div and span

<!-- for style -->
<!-- div is just a container for grouping things together -->
<div></div>
<!-- span is for text in paragraph -->
<span></span>

link

<a href="http://"></a>

table

<table>
    <thead>
        <tr> <!-- table row-->
            <th>table head A</th>
            <th>table head B</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>A</td> <!-- table data -->
            <td>B</td>
        </tr>
    </tbody>
</table>

forms ่กจๅ•

<form action="/my-form-submitting-page" method="get">

<!-- All our inputs go in here -->
<input type="text">
<input type="date">
<input type="color">
<input type="file">
<input type="checkbox">

</form>

input

<input type="radio" name = "gender" value = "male"> <!--ๅ•้€‰-->
<input type="radio" name = "gender" value = "female"> <!--ๅ•้€‰-->
<input type="radio" name = "gender" value = "other"> <!--ๅ•้€‰-->

label

<label for="username">Username:</label>
<input type="text" id="username">
PreviousThe Web DevelopMent BootcampNextcss

Last updated 5 years ago

Was this helpful?